diff options
Diffstat (limited to '.config')
| -rwxr-xr-x | .config/fontconfig/fonts.conf | 2 | ||||
| -rw-r--r-- | .config/lf/lfrc | 17 | ||||
| -rw-r--r-- | .config/ncmpcpp/config | 1 | ||||
| -rwxr-xr-x | .config/x11/xinitrc | 3 |
4 files changed, 20 insertions, 3 deletions
diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf index d7048ba..761ae00 100755 --- a/.config/fontconfig/fonts.conf +++ b/.config/fontconfig/fonts.conf @@ -32,7 +32,7 @@ <family>monospace</family> <prefer> <family>Noto Sans Mono</family> - <family>Liberatinus Mono</family> + <family>Libertinus Mono</family> <family>FontAwesome</family> <family>Braille</family> </prefer> diff --git a/.config/lf/lfrc b/.config/lf/lfrc index 56a4182..e104591 100644 --- a/.config/lf/lfrc +++ b/.config/lf/lfrc @@ -58,7 +58,22 @@ cmd extract ${{ printf "%s\n\t" "$fx" printf "extract?[y/N]" read ans - [ $ans = "y" ] && aunpack $fx + [ $ans = "y" ] && { + case $fx in + *.tar.bz2) tar xjf $fx ;; + *.tar.gz) tar xzf $fx ;; + *.bz2) bunzip2 $fx ;; + *.rar) unrar e $fx ;; + *.gz) gunzip $fx ;; + *.tar) tar xf $fx ;; + *.tbz2) tar xjf $fx ;; + *.tgz) tar xzf $fx ;; + *.zip) unzip $fx ;; + *.Z) uncompress $fx ;; + *.7z) 7z x $fx ;; + *.tar.xz) tar xf $fx ;; + esac + } }} cmd delete ${{ diff --git a/.config/ncmpcpp/config b/.config/ncmpcpp/config index 3111aab..1e2a8b0 100644 --- a/.config/ncmpcpp/config +++ b/.config/ncmpcpp/config @@ -31,3 +31,4 @@ progressbar_elapsed_color = blue:b statusbar_color = red statusbar_time_color = cyan:b execute_on_song_change="pkill -RTMIN+11 dwmblocks" +execute_on_player_state_change="pkill -RTMIN+11 dwmblocks" diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc index 2debc01..e99da8c 100755 --- a/.config/x11/xinitrc +++ b/.config/x11/xinitrc @@ -13,5 +13,6 @@ if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile" ]; then else . "$HOME/.xprofile" fi - +# Activate dbus variables +dbus-update-activation-environment --all ssh-agent dwm |
