mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-04-03 09:37:45 +02:00
Compare commits
4 Commits
ead803572f
...
dd24dbd0d7
Author | SHA1 | Date | |
---|---|---|---|
|
dd24dbd0d7 | ||
|
3843dd8da7 | ||
|
aa9b0a14a9 | ||
|
837307c21e |
@ -49,6 +49,9 @@ super + Return
|
||||
Print
|
||||
screenshot
|
||||
|
||||
super + space
|
||||
touchpad toggle
|
||||
|
||||
super + shift + space
|
||||
dunstctl close-all
|
||||
|
||||
|
@ -21,5 +21,6 @@ then
|
||||
fi
|
||||
fi
|
||||
|
||||
[ -f /sys/class/net/e*/operstate ] && lanicon=$(cat /sys/class/net/e*/operstate | sed "s/down/^b#282828^^c#ff0000^ /;s/up/^b#282828^^c#dfdfdf^ /") || lanicon="^b#282828^^c#ff0000^ "
|
||||
|
||||
echo "$(cat /sys/class/net/e*/operstate | sed "s/down/^b#282828^^c#ff0000^ /;s/up/^b#282828^^c#dfdfdf^ /")" "$wifiicon"
|
||||
echo "$lanicon" "$wifiicon"
|
||||
|
@ -4,13 +4,17 @@
|
||||
# by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
|
||||
|
||||
case "$1" in
|
||||
toggle) (synclient | grep "TouchpadOff.*1" && synclient TouchpadOff=0)>/dev/null && notify-send "TouchPad reactivated." && exit
|
||||
synclient TouchpadOff=1 && notify-send "TouchPad deactivated." ;;
|
||||
on) synclient TouchpadOff=0 && notify-send "TouchPad activated." ;;
|
||||
off) synclient TouchpadOff=1 && notify-send "TouchPad deactivated." ;;
|
||||
toggle) (synclient | grep "TouchpadOff.*1") && touchpad on && exit
|
||||
touchpad off ;;
|
||||
*) cat << EOF
|
||||
touchpad: cli script to enable and disable the touchpad.
|
||||
|
||||
Allowed options:
|
||||
toggle Toggle the touchpad on and off
|
||||
on Turn touchpad on
|
||||
off Turn touchpad off
|
||||
toggle Toggle the touchpad on or off
|
||||
all else Print this message
|
||||
|
||||
EOF
|
||||
|
Loading…
x
Reference in New Issue
Block a user