diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-02-08 13:02:03 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-02-08 13:02:03 +0200 |
commit | e41164cc452089c01f6764458ceb0127ab40c928 (patch) | |
tree | 7b61822b723f14dc694fb8e54bce8706543dde3f /ranger | |
parent | 2c77874f1f6b23e947f040c187a4df65f147f462 (diff) |
Overall better functionality + new scripts.
Changes to be committed:
new file: vpn
modified: X11/xinit
modified: zsh/aliases
modified: zsh/zshrc
modified: zsh/env
modified: color-picker
modified: keybinds
modified: nvpower
modified: pmenu
modified: Vencord/settings/settings.json
modified: zathura/zathurarc
modified: ranger/rifle.conf
modified: ranger/rc.conf
modified: btop/btop.conf
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/rc.conf | 3 | ||||
-rw-r--r-- | ranger/rifle.conf | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ranger/rc.conf b/ranger/rc.conf index 1088cf8..308990d 100644 --- a/ranger/rc.conf +++ b/ranger/rc.conf @@ -10,3 +10,6 @@ set one_indexed true # Display the directory name in tabs? set dirname_in_tabs true + +# Display file icons (need devicons installed) +#default_linemode devicons diff --git a/ranger/rifle.conf b/ranger/rifle.conf index 60c6718..a9e8d5d 100644 --- a/ranger/rifle.conf +++ b/ranger/rifle.conf @@ -222,7 +222,8 @@ ext rar, has unrar = for file in "$@"; do unrar x "$file"; done #------------------------------------------- # Fonts #------------------------------------------- -mime ^font, has fontforge, X, flag f = fontforge "$@" +#mime ^font, has fontforge, X, flag f = fontforge "$@" +mime ^font, has display, X, flag f = display "$@" #------------------------------------------- # Flag t fallback terminals @@ -231,6 +232,7 @@ mime ^font, has fontforge, X, flag f = fontforge "$@" # if you install a rare terminal emulator, you probably use it. # gnome-terminal/konsole/xterm on the other hand are often installed as part of # a desktop environment or as fallback terminal emulators. +mime ^ranger/x-terminal-emulator, has st = st -e "$@" mime ^ranger/x-terminal-emulator, has terminology = terminology -e "$@" mime ^ranger/x-terminal-emulator, has kitty = kitty -- "$@" mime ^ranger/x-terminal-emulator, has alacritty = alacritty -e "$@" @@ -241,7 +243,6 @@ mime ^ranger/x-terminal-emulator, has termite = termite -x '"$@"' #mime ^ranger/x-terminal-emulator, has yakuake = yakuake -e "$@" mime ^ranger/x-terminal-emulator, has guake = guake -ne "$@" mime ^ranger/x-terminal-emulator, has tilda = tilda -c "$@" -mime ^ranger/x-terminal-emulator, has st = st -e "$@" mime ^ranger/x-terminal-emulator, has terminator = terminator -x "$@" mime ^ranger/x-terminal-emulator, has urxvt = urxvt -e "$@" mime ^ranger/x-terminal-emulator, has pantheon-terminal = pantheon-terminal -e "$@" @@ -279,6 +280,7 @@ label pager, !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" # Execute a file as program/script. mime application/x-executable = "$1" +# ????? # Move the file to trash using trash-cli. label trash, has trash-put = trash-put -- "$@" |