1
1
mirror of https://github.com/rywng/dotfiles.git synced 2024-11-24 20:01:49 +08:00

Compare commits

..

2 Commits

Author SHA1 Message Date
juan
24c82b8e2d update nnn config 2021-10-17 23:11:38 +08:00
juan
830d65ce53 add quotes because why not? 2021-10-17 20:23:46 +08:00
2 changed files with 15 additions and 16 deletions

View File

@ -54,10 +54,11 @@ bindsym XF86AudioMute exec amixer sset Master toggle | sed -En '/\[on\]/ s/.*\[(
bindsym XF86MonBrightnessUp exec light -A 5 && light -G | cut -d'.' -f1 > $SWAYSOCK.wob bindsym XF86MonBrightnessUp exec light -A 5 && light -G | cut -d'.' -f1 > $SWAYSOCK.wob
bindsym XF86MonBrightnessDown exec light -U 5 && light -G | cut -d'.' -f1 > $SWAYSOCK.wob bindsym XF86MonBrightnessDown exec light -U 5 && light -G | cut -d'.' -f1 > $SWAYSOCK.wob
bindsym XF86AudioPlay exec playerctl play bindsym XF86AudioPlay exec 'playerctl play'
bindsym XF86AudioPause exec playerctl pause bindsym XF86AudioPause exec 'playerctl pause'
bindsym XF86AudioNext exec playerctl next binsdym XF86AudioStop exec 'playerctl stop'
bindsym XF86AudioPrev exec playerctl previous bindsym XF86AudioNext exec 'playerctl next'
bindsym XF86AudioPrev exec 'playerctl previous'
#borders stuff #borders stuff

22
.zshrc
View File

@ -71,20 +71,18 @@ zz () {
} }
alias zc="z -c" alias zc="z -c"
n () n ()
{ {
# Block nesting of nnn in subshells if [ -n $NNNLVL ] && [ "${NNNLVL:-0}" -ge 1 ]; then
if [ -n $NNNLVL ] && [ "${NNNLVL:-0}" -ge 1 ]; then echo "nnn is already running"
echo "nnn is already running" return
return fi
fi NNN_TMPFILE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd"
NNN_TMPFILE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd" nnn "$@"
nnn "$@" "-G" if [ -f "$NNN_TMPFILE" ]; then
if [ -f "$NNN_TMPFILE" ]; then . "$NNN_TMPFILE"
. "$NNN_TMPFILE" rm -f "$NNN_TMPFILE" > /dev/null
rm -f "$NNN_TMPFILE" > /dev/null fi
fi
} }
# get cheat sheet # get cheat sheet