diff options
Diffstat (limited to '.scripts')
-rwxr-xr-x | .scripts/kbesccaps | 7 | ||||
-rwxr-xr-x | .scripts/volumechanger | 4 |
2 files changed, 4 insertions, 7 deletions
diff --git a/.scripts/kbesccaps b/.scripts/kbesccaps index b6b187c..d650fa5 100755 --- a/.scripts/kbesccaps +++ b/.scripts/kbesccaps @@ -4,7 +4,8 @@ ##whenever I plug in any of my keyboard (wired or wireless) #PreRequisite lsusb/usbutils -[ -z "$(command -v lsusb)" ] && echo "Install usbutils" && exit +#[ -z "$(command -v lsusb)" ] && echo "Install usbutils" && exit +#[ -n "$(lsusb | grep -e 04f3:152e -e 25a7:fa67)" ] && setxkbmap -option caps:escape || exit #for cronjob export DISPLAY=:0 @@ -12,7 +13,3 @@ export DISPLAY=:0 #If setxkbmap query string is of zero length #then setxkbmap set caps lock as esc key [[ -z "$(setxkbmap -query | grep "caps:escape")" ]] && setxkbmap -option caps:escape - -#[ -n "$(lsusb | grep -e 04f3:152e -e 25a7:fa67)" ] && setxkbmap -option caps:escape || exit - - diff --git a/.scripts/volumechanger b/.scripts/volumechanger index 2e97506..cc09e67 100755 --- a/.scripts/volumechanger +++ b/.scripts/volumechanger @@ -1,7 +1,7 @@ #!/bin/sh if [ $1 = up ]; then - wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%+ ##increase by 2% + wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%+ && dunstify "Volume Changed" "Volume set to $(volumecurr)" -i volume-high -t 1500 -r 1235 ##increase by 2% elif [ $1 = down ];then - wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%- ##decrease by 2% + wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%- && dunstify "Volume Changed" "Volume set to $(volumecurr)" -i volume-low -t 1500 -r 1236 ##decrease by 2% fi |