mirror of
https://github.com/GRFreire/dotfiles.git
synced 2026-07-05 08:19:40 +00:00
Compare commits
No commits in common. "d4a9e6398a724b026479d425ec6949be9612a9bd" and "5431558ece9f2597c82a93301429f5de90f547c2" have entirely different histories.
d4a9e6398a
...
5431558ece
95
.config/Code/User/keybindings.json
Normal file
95
.config/Code/User/keybindings.json
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"key": "ctrl+'",
|
||||||
|
"command": "workbench.action.terminal.toggleTerminal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+shift+d",
|
||||||
|
"command": "editor.action.copyLinesDownAction",
|
||||||
|
"when": "editorTextFocus && !editorReadonly"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+=",
|
||||||
|
"command": "-workbench.action.zoomIn"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+=",
|
||||||
|
"command": "editor.action.fontZoomIn"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+-",
|
||||||
|
"command": "editor.action.fontZoomOut"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+-",
|
||||||
|
"command": "-workbench.action.zoomOut"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+numpad_add",
|
||||||
|
"command": "-workbench.action.zoomIn"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+shift+-",
|
||||||
|
"command": "workbench.action.zoomOut"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+numpad_subtract",
|
||||||
|
"command": "-workbench.action.zoomOut"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Remap Alt+Number to Ctrl+Number to switch tabs
|
||||||
|
{
|
||||||
|
"key": "ctrl+1",
|
||||||
|
"command": "workbench.action.openEditorAtIndex1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+2",
|
||||||
|
"command": "workbench.action.openEditorAtIndex2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+3",
|
||||||
|
"command": "workbench.action.openEditorAtIndex3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+4",
|
||||||
|
"command": "workbench.action.openEditorAtIndex4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+5",
|
||||||
|
"command": "workbench.action.openEditorAtIndex5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+6",
|
||||||
|
"command": "workbench.action.openEditorAtIndex6"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+7",
|
||||||
|
"command": "workbench.action.openEditorAtIndex7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+8",
|
||||||
|
"command": "workbench.action.openEditorAtIndex8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+9",
|
||||||
|
"command": "workbench.action.openEditorAtIndex9"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+alt+z",
|
||||||
|
"command": "workbench.action.toggleZenMode"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+k z",
|
||||||
|
"command": "-workbench.action.toggleZenMode"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "alt+g",
|
||||||
|
"command": "editor.action.revealDefinition",
|
||||||
|
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "f12",
|
||||||
|
"command": "-editor.action.revealDefinition",
|
||||||
|
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
|
||||||
|
}
|
||||||
|
]
|
||||||
69
.config/Code/User/settings.json
Normal file
69
.config/Code/User/settings.json
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
{
|
||||||
|
"workbench.iconTheme": "material-icon-theme",
|
||||||
|
"workbench.colorTheme": "Min Dark",
|
||||||
|
"editor.fontFamily": "'Cascadia Code', 'Fira Code', 'Droid Sans Mono', 'Droid Sans Fallback', monospace",
|
||||||
|
"editor.fontSize": 14,
|
||||||
|
"workbench.editor.enablePreview": false,
|
||||||
|
"editor.cursorSmoothCaretAnimation": "on",
|
||||||
|
"editor.fontLigatures": true,
|
||||||
|
"editor.lineHeight": 24,
|
||||||
|
"explorer.compactFolders": false,
|
||||||
|
"workbench.sideBar.location": "right",
|
||||||
|
"editor.renderLineHighlight": "gutter",
|
||||||
|
"workbench.editor.labelFormat": "short",
|
||||||
|
"workbench.startupEditor": "none",
|
||||||
|
"files.defaultLanguage": " ${activeEditorLanguage}",
|
||||||
|
"editor.bracketPairColorization.enabled": true,
|
||||||
|
"gitlens.codeLens.enabled": false,
|
||||||
|
"gitlens.hovers.currentLine.over": "line",
|
||||||
|
"material-icon-theme.folders.associations": {
|
||||||
|
"infra": "app",
|
||||||
|
"entities": "class",
|
||||||
|
"schemas": "class",
|
||||||
|
"typeorm": "database",
|
||||||
|
"repositories": "mappings",
|
||||||
|
"http": "container",
|
||||||
|
"migrations": "tools",
|
||||||
|
"modules": "components",
|
||||||
|
"implementations": "core",
|
||||||
|
"dtos": "typescript",
|
||||||
|
"fakes": "mock",
|
||||||
|
"cloud": "public",
|
||||||
|
"media": "video",
|
||||||
|
"recover": "update",
|
||||||
|
"health": "rules"
|
||||||
|
},
|
||||||
|
"material-icon-theme.files.associations": {
|
||||||
|
"ormconfig.json": "database",
|
||||||
|
"tsconfig.json": "tune",
|
||||||
|
"*.glsl": "drawio"
|
||||||
|
},
|
||||||
|
"editor.codeActionsOnSave": {
|
||||||
|
"source.fixAll.eslint": true,
|
||||||
|
"source.fixAll": true
|
||||||
|
},
|
||||||
|
"cSpell.userWords": [
|
||||||
|
"Rugai",
|
||||||
|
"Freire",
|
||||||
|
"GRFreire"
|
||||||
|
],
|
||||||
|
"cSpell.language": "en,pt",
|
||||||
|
"extensions.ignoreRecommendations": false,
|
||||||
|
"elixirLS.dialyzerEnabled": false,
|
||||||
|
"elixirLS.suggestSpecs": false,
|
||||||
|
"[dart]": {
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"editor.formatOnType": true,
|
||||||
|
"editor.rulers": [
|
||||||
|
80
|
||||||
|
],
|
||||||
|
"editor.selectionHighlight": false,
|
||||||
|
"editor.suggest.snippetsPreventQuickSuggestions": false,
|
||||||
|
"editor.suggestSelection": "first",
|
||||||
|
"editor.tabCompletion": "onlySnippets",
|
||||||
|
"editor.wordBasedSuggestions": false,
|
||||||
|
},
|
||||||
|
"terminal.integrated.env.linux": {
|
||||||
|
"EMULATOR": "code"
|
||||||
|
}
|
||||||
|
}
|
||||||
48
.config/code/extensions-list.txt
Normal file
48
.config/code/extensions-list.txt
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
ban.troff
|
||||||
|
bungcip.better-toml
|
||||||
|
cschlosser.doxdocgen
|
||||||
|
Dart-Code.dart-code
|
||||||
|
Dart-Code.flutter
|
||||||
|
dbaeumer.vscode-eslint
|
||||||
|
dlasagno.rasi
|
||||||
|
eamodio.gitlens
|
||||||
|
EditorConfig.EditorConfig
|
||||||
|
enkia.tokyo-night
|
||||||
|
iampeterbanjo.elixirlinter
|
||||||
|
JakeBecker.elixir-ls
|
||||||
|
janjoerke.align-by-regex
|
||||||
|
jeff-hykin.better-cpp-syntax
|
||||||
|
josetr.cmake-language-support-vscode
|
||||||
|
jpoissonnier.vscode-styled-components
|
||||||
|
mechatroner.rainbow-csv
|
||||||
|
miguelsolorio.min-theme
|
||||||
|
mikestead.dotenv
|
||||||
|
ms-azuretools.vscode-docker
|
||||||
|
ms-dotnettools.csharp
|
||||||
|
ms-dotnettools.vscode-dotnet-runtime
|
||||||
|
ms-python.python
|
||||||
|
ms-python.vscode-pylance
|
||||||
|
ms-vscode-remote.remote-containers
|
||||||
|
ms-vscode-remote.remote-ssh
|
||||||
|
ms-vscode-remote.remote-ssh-edit
|
||||||
|
ms-vscode-remote.remote-wsl
|
||||||
|
ms-vscode.cmake-tools
|
||||||
|
ms-vscode.cpptools
|
||||||
|
ms-vscode.cpptools-extension-pack
|
||||||
|
ms-vscode.cpptools-themes
|
||||||
|
ms-vscode.hexeditor
|
||||||
|
ms-vscode.remote-explorer
|
||||||
|
ms-vsliveshare.vsliveshare
|
||||||
|
naumovs.color-highlight
|
||||||
|
nico-castell.linux-desktop-file
|
||||||
|
PKief.material-icon-theme
|
||||||
|
platformio.platformio-ide
|
||||||
|
prince781.vala
|
||||||
|
redhat.vscode-commons
|
||||||
|
rocketseat.rocketseatreactjs
|
||||||
|
rocketseat.rocketseatreactnative
|
||||||
|
rust-lang.rust
|
||||||
|
slevesque.shader
|
||||||
|
streetsidesoftware.code-spell-checker
|
||||||
|
streetsidesoftware.code-spell-checker-portuguese
|
||||||
|
twxs.cmake
|
||||||
4
.config/code/install-extensions.sh
Executable file
4
.config/code/install-extensions.sh
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
cat .config/code/extensions-list.txt | xargs -L 1 code --install-extension
|
||||||
|
|
||||||
4
.config/code/update-extensions.sh
Executable file
4
.config/code/update-extensions.sh
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
code --list-extensions > .config/code/extensions-list.txt
|
||||||
|
|
||||||
@ -1,200 +0,0 @@
|
|||||||
# i3 config file (v4)
|
|
||||||
#
|
|
||||||
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
|
|
||||||
|
|
||||||
# Mod = SUPER
|
|
||||||
set $mod Mod4
|
|
||||||
|
|
||||||
font pango:DejaVu Sans Mono 10
|
|
||||||
|
|
||||||
# TODO: some of them should be in ~/.config/autostart
|
|
||||||
# Autostart
|
|
||||||
exec --no-startup-id lxpolkit
|
|
||||||
exec --no-startup-id /usr/bin/numlockx
|
|
||||||
exec --no-startup-id dunst
|
|
||||||
exec --no-startup-id feh --bg-scale --no-fehbg ~/.config/wall.png
|
|
||||||
exec --no-startup-id conky
|
|
||||||
exec --no-startup-id xsettingsd -c ~/.config/xsettingsd/xsettingsd.conf
|
|
||||||
exec --no-startup-id nm-applet
|
|
||||||
exec --no-startup-id bluman-applet
|
|
||||||
exec --no-startup-id ~/.config/xob/volume.sh
|
|
||||||
exec --no-startup-id ~/.config/xob/brightness.sh
|
|
||||||
exec --no-startup-id autoxsetwacom
|
|
||||||
exec --no-startup-id sxhkd
|
|
||||||
exec --no-startup-id ~/.scripts/bin/display-restore loop
|
|
||||||
exec --no-startup-id easyeffects --gapplication-service
|
|
||||||
|
|
||||||
# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
|
|
||||||
# screen before suspend. Use loginctl lock-session to lock your screen.
|
|
||||||
exec --no-startup-id xss-lock --transfer-sleep-lock -- betterlockscreen -l dimblur
|
|
||||||
|
|
||||||
# Start XDG autostart .desktop files using dex. See also
|
|
||||||
# https://wiki.archlinux.org/index.php/XDG_Autostart
|
|
||||||
exec --no-startup-id dex --autostart --environment i3
|
|
||||||
|
|
||||||
# Volume control
|
|
||||||
set $refresh_i3status killall -SIGUSR1 i3status
|
|
||||||
bindsym XF86AudioRaiseVolume exec --no-startup-id amixer -q sset Master 5%+ && $refresh_i3status
|
|
||||||
bindsym XF86AudioLowerVolume exec --no-startup-id amixer -q sset Master 5%- && $refresh_i3status
|
|
||||||
bindsym XF86AudioMute exec --no-startup-id amixer sset Master toggle && $refresh_i3status
|
|
||||||
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
|
|
||||||
|
|
||||||
# Media control
|
|
||||||
bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
|
|
||||||
bindsym XF86AudioStop exec --no-startup-id playerctl stop
|
|
||||||
bindsym XF86AudioNext exec --no-startup-id playerctl next
|
|
||||||
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
|
|
||||||
|
|
||||||
# Screen brightness
|
|
||||||
bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl set 5%+ -e
|
|
||||||
bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl set 5%- -e --min-value=5
|
|
||||||
|
|
||||||
# Use Mouse+$mod to drag floating windows to their wanted position
|
|
||||||
floating_modifier $mod
|
|
||||||
|
|
||||||
# move tiling windows via drag & drop by left-clicking into the title bar,
|
|
||||||
# or left-clicking anywhere into the window while holding the floating modifier.
|
|
||||||
tiling_drag modifier titlebar
|
|
||||||
|
|
||||||
# start a terminal
|
|
||||||
bindsym $mod+Return exec i3-sensible-terminal
|
|
||||||
|
|
||||||
# kill focused window
|
|
||||||
bindsym $mod+q kill
|
|
||||||
|
|
||||||
# start dmenu (a program launcher)
|
|
||||||
bindsym $mod+d exec --no-startup-id dmenu_run
|
|
||||||
|
|
||||||
# power menu
|
|
||||||
bindsym $mod+BackSpace exec --no-startup-id ~/.scripts/bin/simple-power-menu
|
|
||||||
|
|
||||||
# change focus
|
|
||||||
bindsym $mod+j focus left
|
|
||||||
bindsym $mod+k focus down
|
|
||||||
bindsym $mod+l focus up
|
|
||||||
bindsym $mod+semicolon focus right
|
|
||||||
|
|
||||||
# alternatively, you can use the cursor keys:
|
|
||||||
bindsym $mod+Left focus left
|
|
||||||
bindsym $mod+Down focus down
|
|
||||||
bindsym $mod+Up focus up
|
|
||||||
bindsym $mod+Right focus right
|
|
||||||
|
|
||||||
# move focused window
|
|
||||||
bindsym $mod+Shift+j move left
|
|
||||||
bindsym $mod+Shift+k move down
|
|
||||||
bindsym $mod+Shift+l move up
|
|
||||||
bindsym $mod+Shift+semicolon move right
|
|
||||||
|
|
||||||
# alternatively, you can use the cursor keys:
|
|
||||||
bindsym $mod+Shift+Left move left
|
|
||||||
bindsym $mod+Shift+Down move down
|
|
||||||
bindsym $mod+Shift+Up move up
|
|
||||||
bindsym $mod+Shift+Right move right
|
|
||||||
|
|
||||||
# move focused window to next monitor
|
|
||||||
bindsym $mod+Ctrl+greater move workspace to output next
|
|
||||||
|
|
||||||
# split in horizontal orientation
|
|
||||||
bindsym $mod+h split h
|
|
||||||
|
|
||||||
# split in vertical orientation
|
|
||||||
bindsym $mod+v split v
|
|
||||||
|
|
||||||
# enter fullscreen mode for the focused container
|
|
||||||
bindsym $mod+m fullscreen toggle
|
|
||||||
|
|
||||||
# change container layout (stacked, tabbed, toggle split)
|
|
||||||
bindsym $mod+s layout stacking
|
|
||||||
bindsym $mod+w layout tabbed
|
|
||||||
bindsym $mod+e layout toggle split
|
|
||||||
|
|
||||||
# toggle tiling / floating
|
|
||||||
bindsym $mod+Shift+space floating toggle
|
|
||||||
|
|
||||||
# change focus between tiling / floating windows
|
|
||||||
bindsym $mod+space focus mode_toggle
|
|
||||||
|
|
||||||
# focus the parent container
|
|
||||||
bindsym $mod+a focus parent
|
|
||||||
|
|
||||||
# focus the child container
|
|
||||||
#bindsym $mod+d focus child
|
|
||||||
|
|
||||||
# Define names for default workspaces for which we configure key bindings later on.
|
|
||||||
# We use variables to avoid repeating the names in multiple places.
|
|
||||||
set $ws1 "1"
|
|
||||||
set $ws2 "2"
|
|
||||||
set $ws3 "3"
|
|
||||||
set $ws4 "4"
|
|
||||||
set $ws5 "5"
|
|
||||||
set $ws6 "6"
|
|
||||||
set $ws7 "7"
|
|
||||||
set $ws8 "8"
|
|
||||||
set $ws9 "9"
|
|
||||||
set $ws10 "10"
|
|
||||||
|
|
||||||
# switch to workspace
|
|
||||||
bindsym $mod+1 workspace number $ws1
|
|
||||||
bindsym $mod+2 workspace number $ws2
|
|
||||||
bindsym $mod+3 workspace number $ws3
|
|
||||||
bindsym $mod+4 workspace number $ws4
|
|
||||||
bindsym $mod+5 workspace number $ws5
|
|
||||||
bindsym $mod+6 workspace number $ws6
|
|
||||||
bindsym $mod+7 workspace number $ws7
|
|
||||||
bindsym $mod+8 workspace number $ws8
|
|
||||||
bindsym $mod+9 workspace number $ws9
|
|
||||||
bindsym $mod+0 workspace number $ws10
|
|
||||||
|
|
||||||
# move focused container to workspace
|
|
||||||
bindsym $mod+Shift+1 move container to workspace number $ws1
|
|
||||||
bindsym $mod+Shift+2 move container to workspace number $ws2
|
|
||||||
bindsym $mod+Shift+3 move container to workspace number $ws3
|
|
||||||
bindsym $mod+Shift+4 move container to workspace number $ws4
|
|
||||||
bindsym $mod+Shift+5 move container to workspace number $ws5
|
|
||||||
bindsym $mod+Shift+6 move container to workspace number $ws6
|
|
||||||
bindsym $mod+Shift+7 move container to workspace number $ws7
|
|
||||||
bindsym $mod+Shift+8 move container to workspace number $ws8
|
|
||||||
bindsym $mod+Shift+9 move container to workspace number $ws9
|
|
||||||
bindsym $mod+Shift+0 move container to workspace number $ws10
|
|
||||||
|
|
||||||
# reload the configuration file
|
|
||||||
# bindsym $mod+Shift+c reload
|
|
||||||
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
|
|
||||||
bindsym $mod+Shift+r restart
|
|
||||||
# exit i3 (logs you out of your X session)
|
|
||||||
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'"
|
|
||||||
|
|
||||||
# resize window (you can also use the mouse for that)
|
|
||||||
mode "resize" {
|
|
||||||
# These bindings trigger as soon as you enter the resize mode
|
|
||||||
|
|
||||||
# Pressing left will shrink the window’s width.
|
|
||||||
# Pressing right will grow the window’s width.
|
|
||||||
# Pressing up will shrink the window’s height.
|
|
||||||
# Pressing down will grow the window’s height.
|
|
||||||
bindsym j resize shrink width 10 px or 10 ppt
|
|
||||||
bindsym k resize grow height 10 px or 10 ppt
|
|
||||||
bindsym l resize shrink height 10 px or 10 ppt
|
|
||||||
bindsym semicolon resize grow width 10 px or 10 ppt
|
|
||||||
|
|
||||||
# same bindings, but for the arrow keys
|
|
||||||
bindsym Left resize shrink width 10 px or 10 ppt
|
|
||||||
bindsym Down resize grow height 10 px or 10 ppt
|
|
||||||
bindsym Up resize shrink height 10 px or 10 ppt
|
|
||||||
bindsym Right resize grow width 10 px or 10 ppt
|
|
||||||
|
|
||||||
# back to normal: Enter or Escape or $mod+r
|
|
||||||
bindsym Return mode "default"
|
|
||||||
bindsym Caps_Lock mode "default"
|
|
||||||
bindsym $mod+r mode "default"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Floating windows
|
|
||||||
for_window [class="gnome-calculator"] floating enable
|
|
||||||
|
|
||||||
bindsym $mod+r mode "resize"
|
|
||||||
|
|
||||||
bar {
|
|
||||||
status_command i3status
|
|
||||||
}
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
# i3status configuration file.
|
|
||||||
# see "man i3status" for documentation.
|
|
||||||
|
|
||||||
# It is important that this file is edited as UTF-8.
|
|
||||||
# The following line should contain a sharp s:
|
|
||||||
# ß
|
|
||||||
# If the above line is not correctly displayed, fix your editor first!
|
|
||||||
|
|
||||||
general {
|
|
||||||
colors = true
|
|
||||||
interval = 5
|
|
||||||
}
|
|
||||||
|
|
||||||
order += "wireless _first_"
|
|
||||||
order += "ethernet _first_"
|
|
||||||
order += "cpu_usage"
|
|
||||||
order += "cpu_temperature 0"
|
|
||||||
order += "memory"
|
|
||||||
order += "battery all"
|
|
||||||
order += "volume master"
|
|
||||||
order += "time"
|
|
||||||
|
|
||||||
wireless _first_ {
|
|
||||||
format_up = "W: %essid (%quality)"
|
|
||||||
format_down = "W: down"
|
|
||||||
}
|
|
||||||
|
|
||||||
ethernet _first_ {
|
|
||||||
format_up = "E: up (%speed)"
|
|
||||||
format_down = "E: down"
|
|
||||||
}
|
|
||||||
|
|
||||||
battery all {
|
|
||||||
format = "%status %percentage %remaining"
|
|
||||||
format_percentage = "%.00f%%"
|
|
||||||
threshold_type = "time"
|
|
||||||
low_threshold = "20"
|
|
||||||
status_chr = "CHR"
|
|
||||||
status_bat = "BAT"
|
|
||||||
min_width = "CHR 100% 05:00"
|
|
||||||
align = "center"
|
|
||||||
}
|
|
||||||
|
|
||||||
cpu_temperature 0 {
|
|
||||||
format = "%degrees °C"
|
|
||||||
}
|
|
||||||
|
|
||||||
cpu_usage {
|
|
||||||
format = "CPU: %usage"
|
|
||||||
separator = false
|
|
||||||
}
|
|
||||||
|
|
||||||
memory {
|
|
||||||
format = "RAM: %used / %total"
|
|
||||||
threshold_degraded = "1G"
|
|
||||||
format_degraded = "MEMORY < %available"
|
|
||||||
}
|
|
||||||
|
|
||||||
time {
|
|
||||||
format = "%H:%M %d/%m/%Y"
|
|
||||||
}
|
|
||||||
|
|
||||||
volume master {
|
|
||||||
format = "♪ (%devicename): %volume"
|
|
||||||
format_muted = "♪ (%devicename): M"
|
|
||||||
min_width = "♪ (Speaker): 100%"
|
|
||||||
align = "center"
|
|
||||||
}
|
|
||||||
45
.config/newsboat/config
Normal file
45
.config/newsboat/config
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# Settings
|
||||||
|
prepopulate-query-feeds yes
|
||||||
|
|
||||||
|
# Keybinds
|
||||||
|
bind-key j down
|
||||||
|
bind-key k up
|
||||||
|
bind-key j next articlelist
|
||||||
|
bind-key k prev articlelist
|
||||||
|
bind-key J next-feed articlelist
|
||||||
|
bind-key K prev-feed articlelist
|
||||||
|
bind-key G end
|
||||||
|
bind-key g home
|
||||||
|
bind-key d pagedown
|
||||||
|
bind-key u pageup
|
||||||
|
bind-key l open
|
||||||
|
bind-key h quit
|
||||||
|
bind-key BACKSPACE quit
|
||||||
|
bind-key a toggle-article-read
|
||||||
|
bind-key n next-unread
|
||||||
|
bind-key N prev-unread
|
||||||
|
bind-key D pb-download
|
||||||
|
bind-key U show-urls
|
||||||
|
bind-key x pb-delete
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
color listnormal cyan default
|
||||||
|
color listfocus yellow default bold
|
||||||
|
color listnormal_unread blue default
|
||||||
|
color listfocus_unread yellow default bold
|
||||||
|
color info red black bold
|
||||||
|
color article default default
|
||||||
|
|
||||||
|
# Highlights
|
||||||
|
highlight all "---.*---" yellow
|
||||||
|
highlight feedlist ".*(0/0))" black
|
||||||
|
highlight article "(^Feed:.*|^Title:.*|^Author:.*)" cyan default bold
|
||||||
|
highlight article "(^Link:.*|^Date:.*)" white default
|
||||||
|
highlight article "https?://[^ ]+" green default
|
||||||
|
highlight article "^(Title):.*$" blue default
|
||||||
|
highlight article "\\[[0-9][0-9]*\\]" magenta default bold
|
||||||
|
highlight article "\\[image\\ [0-9]+\\]" green default bold
|
||||||
|
highlight article "\\[embedded flash: [0-9][0-9]*\\]" green default bold
|
||||||
|
highlight article ":.*\\(link\\)$" cyan default
|
||||||
|
highlight article ":.*\\(image\\)$" blue default
|
||||||
|
highlight article ":.*\\(embedded flash\\)$" magenta default
|
||||||
10
.config/newsboat/urls
Normal file
10
.config/newsboat/urls
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# "query:Unread:unread = \"yes\"" meta
|
||||||
|
|
||||||
|
# Linux & Open Source
|
||||||
|
https://www.archlinux.org/feeds/news "linux"
|
||||||
|
https://9to5linux.com/feed "linux"
|
||||||
|
https://itsfoss.com/feed "linux"
|
||||||
|
https://omgubuntu.co.uk/feed "linux"
|
||||||
|
http://www.webupd8.org/rss.xml "linux"
|
||||||
|
https://www.linuxuprising.com/feeds/posts/default "linux"
|
||||||
|
|
||||||
39
.config/paru/paru.conf
Normal file
39
.config/paru/paru.conf
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#
|
||||||
|
# $PARU_CONF
|
||||||
|
# /etc/paru.conf
|
||||||
|
# ~/.config/paru/paru.conf
|
||||||
|
#
|
||||||
|
# See the paru.conf(5) manpage for options
|
||||||
|
|
||||||
|
#
|
||||||
|
# GENERAL OPTIONS
|
||||||
|
#
|
||||||
|
[options]
|
||||||
|
PgpFetch
|
||||||
|
Devel
|
||||||
|
Provides
|
||||||
|
DevelSuffixes = -git -cvs -svn -bzr -darcs -always -hg -fossil
|
||||||
|
#AurOnly
|
||||||
|
#BottomUp
|
||||||
|
#RemoveMake
|
||||||
|
SudoLoop
|
||||||
|
#UseAsk
|
||||||
|
#SaveChanges
|
||||||
|
#CombinedUpgrade
|
||||||
|
CleanAfter
|
||||||
|
#UpgradeMenu
|
||||||
|
#NewsOnUpgrade
|
||||||
|
|
||||||
|
#LocalRepo
|
||||||
|
#Chroot
|
||||||
|
#Sign
|
||||||
|
#SignDb
|
||||||
|
#KeepRepoCache
|
||||||
|
|
||||||
|
#
|
||||||
|
# Binary OPTIONS
|
||||||
|
#
|
||||||
|
#[bin]
|
||||||
|
#FileManager = vifm
|
||||||
|
#MFlags = --skippgpcheck
|
||||||
|
#Sudo = doas
|
||||||
6
.config/ranger/rc.conf
Normal file
6
.config/ranger/rc.conf
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
set vcs_aware true
|
||||||
|
set preview_images true
|
||||||
|
set preview_images_method ueberzug
|
||||||
|
|
||||||
|
# https://github.com/alexanderjeurissen/ranger_devicons
|
||||||
|
default_linemode devicons
|
||||||
350
.config/ranger/scope.sh
Executable file
350
.config/ranger/scope.sh
Executable file
@ -0,0 +1,350 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -o noclobber -o noglob -o nounset -o pipefail
|
||||||
|
IFS=$'\n'
|
||||||
|
|
||||||
|
## If the option `use_preview_script` is set to `true`,
|
||||||
|
## then this script will be called and its output will be displayed in ranger.
|
||||||
|
## ANSI color codes are supported.
|
||||||
|
## STDIN is disabled, so interactive scripts won't work properly
|
||||||
|
|
||||||
|
## This script is considered a configuration file and must be updated manually.
|
||||||
|
## It will be left untouched if you upgrade ranger.
|
||||||
|
|
||||||
|
## Because of some automated testing we do on the script #'s for comments need
|
||||||
|
## to be doubled up. Code that is commented out, because it's an alternative for
|
||||||
|
## example, gets only one #.
|
||||||
|
|
||||||
|
## Meanings of exit codes:
|
||||||
|
## code | meaning | action of ranger
|
||||||
|
## -----+------------+-------------------------------------------
|
||||||
|
## 0 | success | Display stdout as preview
|
||||||
|
## 1 | no preview | Display no preview at all
|
||||||
|
## 2 | plain text | Display the plain content of the file
|
||||||
|
## 3 | fix width | Don't reload when width changes
|
||||||
|
## 4 | fix height | Don't reload when height changes
|
||||||
|
## 5 | fix both | Don't ever reload
|
||||||
|
## 6 | image | Display the image `$IMAGE_CACHE_PATH` points to as an image preview
|
||||||
|
## 7 | image | Display the file directly as an image
|
||||||
|
|
||||||
|
## Script arguments
|
||||||
|
FILE_PATH="${1}" # Full path of the highlighted file
|
||||||
|
PV_WIDTH="${2}" # Width of the preview pane (number of fitting characters)
|
||||||
|
## shellcheck disable=SC2034 # PV_HEIGHT is provided for convenience and unused
|
||||||
|
PV_HEIGHT="${3}" # Height of the preview pane (number of fitting characters)
|
||||||
|
IMAGE_CACHE_PATH="${4}" # Full path that should be used to cache image preview
|
||||||
|
PV_IMAGE_ENABLED="${5}" # 'True' if image previews are enabled, 'False' otherwise.
|
||||||
|
|
||||||
|
FILE_EXTENSION="${FILE_PATH##*.}"
|
||||||
|
FILE_EXTENSION_LOWER="$(printf "%s" "${FILE_EXTENSION}" | tr '[:upper:]' '[:lower:]')"
|
||||||
|
|
||||||
|
## Settings
|
||||||
|
HIGHLIGHT_SIZE_MAX=262143 # 256KiB
|
||||||
|
HIGHLIGHT_TABWIDTH=${HIGHLIGHT_TABWIDTH:-8}
|
||||||
|
HIGHLIGHT_STYLE=${HIGHLIGHT_STYLE:-pablo}
|
||||||
|
HIGHLIGHT_OPTIONS="--replace-tabs=${HIGHLIGHT_TABWIDTH} --style=${HIGHLIGHT_STYLE} ${HIGHLIGHT_OPTIONS:-}"
|
||||||
|
PYGMENTIZE_STYLE=${PYGMENTIZE_STYLE:-autumn}
|
||||||
|
OPENSCAD_IMGSIZE=${RNGR_OPENSCAD_IMGSIZE:-1000,1000}
|
||||||
|
OPENSCAD_COLORSCHEME=${RNGR_OPENSCAD_COLORSCHEME:-Tomorrow Night}
|
||||||
|
|
||||||
|
handle_extension() {
|
||||||
|
case "${FILE_EXTENSION_LOWER}" in
|
||||||
|
## Archive
|
||||||
|
a|ace|alz|arc|arj|bz|bz2|cab|cpio|deb|gz|jar|lha|lz|lzh|lzma|lzo|\
|
||||||
|
rpm|rz|t7z|tar|tbz|tbz2|tgz|tlz|txz|tZ|tzo|war|xpi|xz|Z|zip)
|
||||||
|
atool --list -- "${FILE_PATH}" && exit 5
|
||||||
|
bsdtar --list --file "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
rar)
|
||||||
|
## Avoid password prompt by providing empty password
|
||||||
|
unrar lt -p- -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
7z)
|
||||||
|
## Avoid password prompt by providing empty password
|
||||||
|
7z l -p -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## PDF
|
||||||
|
pdf)
|
||||||
|
## Preview as text conversion
|
||||||
|
pdftotext -l 10 -nopgbrk -q -- "${FILE_PATH}" - | \
|
||||||
|
fmt -w "${PV_WIDTH}" && exit 5
|
||||||
|
mutool draw -F txt -i -- "${FILE_PATH}" 1-10 | \
|
||||||
|
fmt -w "${PV_WIDTH}" && exit 5
|
||||||
|
exiftool "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## BitTorrent
|
||||||
|
torrent)
|
||||||
|
transmission-show -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## OpenDocument
|
||||||
|
odt|ods|odp|sxw)
|
||||||
|
## Preview as text conversion
|
||||||
|
odt2txt "${FILE_PATH}" && exit 5
|
||||||
|
## Preview as markdown conversion
|
||||||
|
pandoc -s -t markdown -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## XLSX
|
||||||
|
xlsx)
|
||||||
|
## Preview as csv conversion
|
||||||
|
## Uses: https://github.com/dilshod/xlsx2csv
|
||||||
|
xlsx2csv -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## HTML
|
||||||
|
htm|html|xhtml)
|
||||||
|
## Preview as text conversion
|
||||||
|
w3m -dump "${FILE_PATH}" && exit 5
|
||||||
|
lynx -dump -- "${FILE_PATH}" && exit 5
|
||||||
|
elinks -dump "${FILE_PATH}" && exit 5
|
||||||
|
pandoc -s -t markdown -- "${FILE_PATH}" && exit 5
|
||||||
|
;;
|
||||||
|
|
||||||
|
## JSON
|
||||||
|
json)
|
||||||
|
jq --color-output . "${FILE_PATH}" && exit 5
|
||||||
|
python -m json.tool -- "${FILE_PATH}" && exit 5
|
||||||
|
;;
|
||||||
|
|
||||||
|
## Direct Stream Digital/Transfer (DSDIFF) and wavpack aren't detected
|
||||||
|
## by file(1).
|
||||||
|
dff|dsf|wv|wvc)
|
||||||
|
mediainfo "${FILE_PATH}" && exit 5
|
||||||
|
exiftool "${FILE_PATH}" && exit 5
|
||||||
|
;; # Continue with next handler on failure
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
handle_image() {
|
||||||
|
## Size of the preview if there are multiple options or it has to be
|
||||||
|
## rendered from vector graphics. If the conversion program allows
|
||||||
|
## specifying only one dimension while keeping the aspect ratio, the width
|
||||||
|
## will be used.
|
||||||
|
local DEFAULT_SIZE="1920x1080"
|
||||||
|
|
||||||
|
local mimetype="${1}"
|
||||||
|
case "${mimetype}" in
|
||||||
|
## SVG
|
||||||
|
# image/svg+xml|image/svg)
|
||||||
|
# convert -- "${FILE_PATH}" "${IMAGE_CACHE_PATH}" && exit 6
|
||||||
|
# exit 1;;
|
||||||
|
|
||||||
|
## DjVu
|
||||||
|
# image/vnd.djvu)
|
||||||
|
# ddjvu -format=tiff -quality=90 -page=1 -size="${DEFAULT_SIZE}" \
|
||||||
|
# - "${IMAGE_CACHE_PATH}" < "${FILE_PATH}" \
|
||||||
|
# && exit 6 || exit 1;;
|
||||||
|
|
||||||
|
## Image
|
||||||
|
image/*)
|
||||||
|
local orientation
|
||||||
|
orientation="$( identify -format '%[EXIF:Orientation]\n' -- "${FILE_PATH}" )"
|
||||||
|
## If orientation data is present and the image actually
|
||||||
|
## needs rotating ("1" means no rotation)...
|
||||||
|
if [[ -n "$orientation" && "$orientation" != 1 ]]; then
|
||||||
|
## ...auto-rotate the image according to the EXIF data.
|
||||||
|
convert -- "${FILE_PATH}" -auto-orient "${IMAGE_CACHE_PATH}" && exit 6
|
||||||
|
fi
|
||||||
|
|
||||||
|
## `w3mimgdisplay` will be called for all images (unless overriden
|
||||||
|
## as above), but might fail for unsupported types.
|
||||||
|
exit 7;;
|
||||||
|
|
||||||
|
## Video
|
||||||
|
# video/*)
|
||||||
|
# # Thumbnail
|
||||||
|
# ffmpegthumbnailer -i "${FILE_PATH}" -o "${IMAGE_CACHE_PATH}" -s 0 && exit 6
|
||||||
|
# exit 1;;
|
||||||
|
|
||||||
|
## PDF
|
||||||
|
application/pdf)
|
||||||
|
pdftoppm -f 1 -l 1 \
|
||||||
|
-scale-to-x "${DEFAULT_SIZE%x*}" \
|
||||||
|
-scale-to-y -1 \
|
||||||
|
-singlefile \
|
||||||
|
-jpeg -tiffcompression jpeg \
|
||||||
|
-- "${FILE_PATH}" "${IMAGE_CACHE_PATH%.*}" \
|
||||||
|
&& exit 6 || exit 1;;
|
||||||
|
|
||||||
|
|
||||||
|
## ePub, MOBI, FB2 (using Calibre)
|
||||||
|
# application/epub+zip|application/x-mobipocket-ebook|\
|
||||||
|
# application/x-fictionbook+xml)
|
||||||
|
# # ePub (using https://github.com/marianosimone/epub-thumbnailer)
|
||||||
|
# epub-thumbnailer "${FILE_PATH}" "${IMAGE_CACHE_PATH}" \
|
||||||
|
# "${DEFAULT_SIZE%x*}" && exit 6
|
||||||
|
# ebook-meta --get-cover="${IMAGE_CACHE_PATH}" -- "${FILE_PATH}" \
|
||||||
|
# >/dev/null && exit 6
|
||||||
|
# exit 1;;
|
||||||
|
|
||||||
|
## Font
|
||||||
|
application/font*|application/*opentype)
|
||||||
|
preview_png="/tmp/$(basename "${IMAGE_CACHE_PATH%.*}").png"
|
||||||
|
if fontimage -o "${preview_png}" \
|
||||||
|
--pixelsize "120" \
|
||||||
|
--fontname \
|
||||||
|
--pixelsize "80" \
|
||||||
|
--text " ABCDEFGHIJKLMNOPQRSTUVWXYZ " \
|
||||||
|
--text " abcdefghijklmnopqrstuvwxyz " \
|
||||||
|
--text " 0123456789.:,;(*!?') ff fl fi ffi ffl " \
|
||||||
|
--text " The quick brown fox jumps over the lazy dog. " \
|
||||||
|
"${FILE_PATH}";
|
||||||
|
then
|
||||||
|
convert -- "${preview_png}" "${IMAGE_CACHE_PATH}" \
|
||||||
|
&& rm "${preview_png}" \
|
||||||
|
&& exit 6
|
||||||
|
else
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
## Preview archives using the first image inside.
|
||||||
|
## (Very useful for comic book collections for example.)
|
||||||
|
# application/zip|application/x-rar|application/x-7z-compressed|\
|
||||||
|
# application/x-xz|application/x-bzip2|application/x-gzip|application/x-tar)
|
||||||
|
# local fn=""; local fe=""
|
||||||
|
# local zip=""; local rar=""; local tar=""; local bsd=""
|
||||||
|
# case "${mimetype}" in
|
||||||
|
# application/zip) zip=1 ;;
|
||||||
|
# application/x-rar) rar=1 ;;
|
||||||
|
# application/x-7z-compressed) ;;
|
||||||
|
# *) tar=1 ;;
|
||||||
|
# esac
|
||||||
|
# { [ "$tar" ] && fn=$(tar --list --file "${FILE_PATH}"); } || \
|
||||||
|
# { fn=$(bsdtar --list --file "${FILE_PATH}") && bsd=1 && tar=""; } || \
|
||||||
|
# { [ "$rar" ] && fn=$(unrar lb -p- -- "${FILE_PATH}"); } || \
|
||||||
|
# { [ "$zip" ] && fn=$(zipinfo -1 -- "${FILE_PATH}"); } || return
|
||||||
|
#
|
||||||
|
# fn=$(echo "$fn" | python -c "import sys; import mimetypes as m; \
|
||||||
|
# [ print(l, end='') for l in sys.stdin if \
|
||||||
|
# (m.guess_type(l[:-1])[0] or '').startswith('image/') ]" |\
|
||||||
|
# sort -V | head -n 1)
|
||||||
|
# [ "$fn" = "" ] && return
|
||||||
|
# [ "$bsd" ] && fn=$(printf '%b' "$fn")
|
||||||
|
#
|
||||||
|
# [ "$tar" ] && tar --extract --to-stdout \
|
||||||
|
# --file "${FILE_PATH}" -- "$fn" > "${IMAGE_CACHE_PATH}" && exit 6
|
||||||
|
# fe=$(echo -n "$fn" | sed 's/[][*?\]/\\\0/g')
|
||||||
|
# [ "$bsd" ] && bsdtar --extract --to-stdout \
|
||||||
|
# --file "${FILE_PATH}" -- "$fe" > "${IMAGE_CACHE_PATH}" && exit 6
|
||||||
|
# [ "$bsd" ] || [ "$tar" ] && rm -- "${IMAGE_CACHE_PATH}"
|
||||||
|
# [ "$rar" ] && unrar p -p- -inul -- "${FILE_PATH}" "$fn" > \
|
||||||
|
# "${IMAGE_CACHE_PATH}" && exit 6
|
||||||
|
# [ "$zip" ] && unzip -pP "" -- "${FILE_PATH}" "$fe" > \
|
||||||
|
# "${IMAGE_CACHE_PATH}" && exit 6
|
||||||
|
# [ "$rar" ] || [ "$zip" ] && rm -- "${IMAGE_CACHE_PATH}"
|
||||||
|
# ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# openscad_image() {
|
||||||
|
# TMPPNG="$(mktemp -t XXXXXX.png)"
|
||||||
|
# openscad --colorscheme="${OPENSCAD_COLORSCHEME}" \
|
||||||
|
# --imgsize="${OPENSCAD_IMGSIZE/x/,}" \
|
||||||
|
# -o "${TMPPNG}" "${1}"
|
||||||
|
# mv "${TMPPNG}" "${IMAGE_CACHE_PATH}"
|
||||||
|
# }
|
||||||
|
|
||||||
|
# case "${FILE_EXTENSION_LOWER}" in
|
||||||
|
# ## 3D models
|
||||||
|
# ## OpenSCAD only supports png image output, and ${IMAGE_CACHE_PATH}
|
||||||
|
# ## is hardcoded as jpeg. So we make a tempfile.png and just
|
||||||
|
# ## move/rename it to jpg. This works because image libraries are
|
||||||
|
# ## smart enough to handle it.
|
||||||
|
# csg|scad)
|
||||||
|
# openscad_image "${FILE_PATH}" && exit 6
|
||||||
|
# ;;
|
||||||
|
# 3mf|amf|dxf|off|stl)
|
||||||
|
# openscad_image <(echo "import(\"${FILE_PATH}\");") && exit 6
|
||||||
|
# ;;
|
||||||
|
# esac
|
||||||
|
}
|
||||||
|
|
||||||
|
handle_mime() {
|
||||||
|
local mimetype="${1}"
|
||||||
|
case "${mimetype}" in
|
||||||
|
## RTF and DOC
|
||||||
|
text/rtf|*msword)
|
||||||
|
## Preview as text conversion
|
||||||
|
## note: catdoc does not always work for .doc files
|
||||||
|
## catdoc: http://www.wagner.pp.ru/~vitus/software/catdoc/
|
||||||
|
catdoc -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## DOCX, ePub, FB2 (using markdown)
|
||||||
|
## You might want to remove "|epub" and/or "|fb2" below if you have
|
||||||
|
## uncommented other methods to preview those formats
|
||||||
|
*wordprocessingml.document|*/epub+zip|*/x-fictionbook+xml)
|
||||||
|
## Preview as markdown conversion
|
||||||
|
pandoc -s -t markdown -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## XLS
|
||||||
|
*ms-excel)
|
||||||
|
## Preview as csv conversion
|
||||||
|
## xls2csv comes with catdoc:
|
||||||
|
## http://www.wagner.pp.ru/~vitus/software/catdoc/
|
||||||
|
xls2csv -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## Text
|
||||||
|
text/* | */xml)
|
||||||
|
## Syntax highlight
|
||||||
|
if [[ "$( stat --printf='%s' -- "${FILE_PATH}" )" -gt "${HIGHLIGHT_SIZE_MAX}" ]]; then
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
if [[ "$( tput colors )" -ge 256 ]]; then
|
||||||
|
local pygmentize_format='terminal256'
|
||||||
|
local highlight_format='xterm256'
|
||||||
|
else
|
||||||
|
local pygmentize_format='terminal'
|
||||||
|
local highlight_format='ansi'
|
||||||
|
fi
|
||||||
|
env HIGHLIGHT_OPTIONS="${HIGHLIGHT_OPTIONS}" highlight \
|
||||||
|
--out-format="${highlight_format}" \
|
||||||
|
--force -- "${FILE_PATH}" && exit 5
|
||||||
|
env COLORTERM=8bit bat --color=always --style="plain" \
|
||||||
|
-- "${FILE_PATH}" && exit 5
|
||||||
|
pygmentize -f "${pygmentize_format}" -O "style=${PYGMENTIZE_STYLE}"\
|
||||||
|
-- "${FILE_PATH}" && exit 5
|
||||||
|
exit 2;;
|
||||||
|
|
||||||
|
## DjVu
|
||||||
|
image/vnd.djvu)
|
||||||
|
## Preview as text conversion (requires djvulibre)
|
||||||
|
djvutxt "${FILE_PATH}" | fmt -w "${PV_WIDTH}" && exit 5
|
||||||
|
exiftool "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## Image
|
||||||
|
image/*)
|
||||||
|
## Preview as text conversion
|
||||||
|
# img2txt --gamma=0.6 --width="${PV_WIDTH}" -- "${FILE_PATH}" && exit 4
|
||||||
|
exiftool "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
## Video and audio
|
||||||
|
video/* | audio/*)
|
||||||
|
mediainfo "${FILE_PATH}" && exit 5
|
||||||
|
exiftool "${FILE_PATH}" && exit 5
|
||||||
|
exit 1;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
handle_fallback() {
|
||||||
|
echo '----- File Type Classification -----' && file --dereference --brief -- "${FILE_PATH}" && exit 5
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
MIMETYPE="$( file --dereference --brief --mime-type -- "${FILE_PATH}" )"
|
||||||
|
if [[ "${PV_IMAGE_ENABLED}" == 'True' ]]; then
|
||||||
|
handle_image "${MIMETYPE}"
|
||||||
|
fi
|
||||||
|
handle_extension
|
||||||
|
handle_mime "${MIMETYPE}"
|
||||||
|
handle_fallback
|
||||||
|
|
||||||
|
exit 1
|
||||||
@ -7,10 +7,7 @@ super + w
|
|||||||
$BROWSER
|
$BROWSER
|
||||||
|
|
||||||
super + f
|
super + f
|
||||||
pcmanfm --no-desktop -n ~
|
pcmanfm --no-desktop -n
|
||||||
|
|
||||||
super + c
|
|
||||||
gnome-calculator
|
|
||||||
|
|
||||||
super + o ; {m}
|
super + o ; {m}
|
||||||
{thunderbird}
|
{thunderbird}
|
||||||
@ -18,17 +15,17 @@ super + o ; {m}
|
|||||||
super + equal
|
super + equal
|
||||||
boomer
|
boomer
|
||||||
|
|
||||||
super + d
|
super + r
|
||||||
dmenu_run
|
rofi -icon-theme 'Paper' -show-icons -show drun
|
||||||
|
|
||||||
Print
|
|
||||||
maim | tee ~/Pictures/Screenshots/Screenshot_$(date +"%Y%m%d-%H%M%S").png | xclip -selection clipboard -t image/png
|
|
||||||
|
|
||||||
super + Print
|
|
||||||
maim -s | tee ~/Pictures/Screenshots/Screenshot_$(date +"%Y%m%d-%H%M%S").png | xclip -selection clipboard -t image/png
|
|
||||||
|
|
||||||
super + shift + c
|
super + shift + c
|
||||||
~/.scripts/bin/clipboard_mngr
|
rofi -modi "clipboard:greenclip print" -show clipboard -run-command '{cmd}'
|
||||||
|
|
||||||
|
super + alt + c
|
||||||
|
~/.scripts/bin/clip-color
|
||||||
|
|
||||||
|
super + shift + e
|
||||||
|
~/.scripts/bin/clip-moji
|
||||||
|
|
||||||
ctrl + alt + t
|
ctrl + alt + t
|
||||||
~/.scripts/bin/restart-touchpad --notify
|
~/.scripts/bin/restart-touchpad --notify
|
||||||
|
|||||||
@ -1,6 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
inotifywait -m -q -e modify /sys/class/backlight/intel_backlight/brightness |
|
|
||||||
while read -r; do
|
|
||||||
./brightness_pct.sh
|
|
||||||
done
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
cd "${0%/*}" || exit
|
|
||||||
|
|
||||||
./brightness-watcher.sh | xob -s brightness
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
max=$(cat /sys/class/backlight/intel_backlight/max_brightness)
|
|
||||||
curr=$(cat /sys/class/backlight/intel_backlight/brightness)
|
|
||||||
|
|
||||||
echo "$curr*100/$max" | bc
|
|
||||||
@ -37,43 +37,3 @@ volume = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
brightness = {
|
|
||||||
thickness = 20;
|
|
||||||
outline = 2;
|
|
||||||
border = 3;
|
|
||||||
padding = 1;
|
|
||||||
orientation = "vertical";
|
|
||||||
|
|
||||||
x = {
|
|
||||||
relative = 0;
|
|
||||||
offset = 24;
|
|
||||||
}
|
|
||||||
y = {
|
|
||||||
relative = 0.5;
|
|
||||||
offset = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
color = {
|
|
||||||
normal = {
|
|
||||||
fg = "#49659C";
|
|
||||||
bg = "#272A34";
|
|
||||||
border = "#49659C";
|
|
||||||
};
|
|
||||||
alt = {
|
|
||||||
fg = "#363D54";
|
|
||||||
bg = "#272A34";
|
|
||||||
border = "#49659C";
|
|
||||||
};
|
|
||||||
overflow = {
|
|
||||||
fg = "#900000";
|
|
||||||
bg = "#272A34";
|
|
||||||
border = "#933333";
|
|
||||||
};
|
|
||||||
altoverflow = {
|
|
||||||
fg = "#900000";
|
|
||||||
bg = "#272A34";
|
|
||||||
border = "#49659C";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|||||||
@ -1,69 +1,37 @@
|
|||||||
source ~/.profile
|
source ~/.profile
|
||||||
|
|
||||||
autoload -Uz compinit colors vcs_info select-word-style
|
# Themes
|
||||||
|
ZSH_THEME="robbyrussell"
|
||||||
|
|
||||||
# Keybinds
|
# Oh my zsh
|
||||||
bindkey -e
|
export ZSH="$HOME/.local/share/ohmyzsh"
|
||||||
select-word-style bash
|
source $ZSH/oh-my-zsh.sh
|
||||||
bindkey '^[[1;5C' forward-word
|
|
||||||
bindkey '^[[1;5D' backward-word
|
|
||||||
bindkey '^[[3;5~' kill-word # Ctrl+Delete
|
|
||||||
|
|
||||||
# Prompt
|
|
||||||
colors
|
|
||||||
precmd() { vcs_info }
|
|
||||||
|
|
||||||
zstyle ':vcs_info:git:*' formats '%F{blue}git(%F{red}%b%F{blue})%f '
|
|
||||||
setopt PROMPT_SUBST
|
|
||||||
PROMPT='%(?.%F{green}.%F{red})%B➜ %F{cyan}%1~%f %F{yellow}${vcs_info_msg_0_}%f%b'
|
|
||||||
|
|
||||||
# Set cursor to beam shape
|
|
||||||
echo -ne '\e[5 q'
|
|
||||||
|
|
||||||
# History
|
|
||||||
HISTFILE=~/.zsh_history
|
|
||||||
HISTSIZE=100000
|
|
||||||
SAVEHIST=100000
|
|
||||||
|
|
||||||
setopt APPEND_HISTORY
|
|
||||||
setopt SHARE_HISTORY
|
|
||||||
setopt INC_APPEND_HISTORY
|
|
||||||
|
|
||||||
# Keybinds up and down to cicle suggestions
|
|
||||||
autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
|
|
||||||
zle -N up-line-or-beginning-search
|
|
||||||
zle -N down-line-or-beginning-search
|
|
||||||
bindkey '^[OA' up-line-or-beginning-search
|
|
||||||
bindkey '^[OB' down-line-or-beginning-search
|
|
||||||
|
|
||||||
# Completion
|
|
||||||
compinit
|
|
||||||
zstyle ':completion:*' menu select
|
|
||||||
zstyle ':completion:*' matcher-list \
|
|
||||||
'm:{a-z}={A-Za-z} m:{-_}={_-}' \
|
|
||||||
'r:|=*' \
|
|
||||||
'l:|=*'
|
|
||||||
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
|
|
||||||
zstyle ':completion:*' list-colors 'di=34'
|
|
||||||
|
|
||||||
### zinit plugins - start
|
|
||||||
ZINIT_PATH="$HOME/.local/share/zinit"
|
|
||||||
if [ ! -d "$ZINIT_PATH" ]; then
|
|
||||||
echo "could not find ZINIT_PATH=$ZINIT_PATH"
|
|
||||||
else
|
|
||||||
source $ZINIT_PATH/zinit.zsh
|
|
||||||
|
|
||||||
zinit light zsh-users/zsh-completions
|
|
||||||
zinit light zsh-users/zsh-autosuggestions
|
|
||||||
zinit light zdharma-continuum/fast-syntax-highlighting
|
|
||||||
fi
|
|
||||||
### zinit plugins - end
|
|
||||||
|
|
||||||
# Load cargo env
|
# Load cargo env
|
||||||
if [ -d "$CARGO_HOME/env" ]; then
|
if [ -d "$CARGO_HOME/env" ]; then
|
||||||
. "$CARGO_HOME/env"
|
. "$CARGO_HOME/env"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Set cursor to beam shape
|
||||||
|
echo -ne '\e[5 q'
|
||||||
|
|
||||||
|
# ZSH Specific
|
||||||
|
compinit -d $XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION
|
||||||
|
|
||||||
|
export HISTORY_IGNORE="ce"
|
||||||
|
|
||||||
|
### zinit plugins - start
|
||||||
|
ZINIT_PATH="$HOME/.local/share/zinit"
|
||||||
|
source $ZINIT_PATH/zinit.zsh
|
||||||
|
|
||||||
|
zinit light zdharma-continuum/fast-syntax-highlighting
|
||||||
|
zinit light zsh-users/zsh-autosuggestions
|
||||||
|
zinit light zsh-users/zsh-completions
|
||||||
|
zinit light djui/alias-tips
|
||||||
|
### zinit plugins - end
|
||||||
|
|
||||||
|
export ZSH_PLUGINS_ALIAS_TIPS_EXCLUDES="_"
|
||||||
|
|
||||||
# Fzf keybinds
|
# Fzf keybinds
|
||||||
# <CTRL+R> search history of shell commands
|
# <CTRL+R> search history of shell commands
|
||||||
if [ $OS_RELEASE = "debian" ]; then
|
if [ $OS_RELEASE = "debian" ]; then
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user