(SXHkD)~brightness adjusts by 25, super+brightness adjusts by 5

This commit is contained in:
2024-04-23 17:05:31 +05:30
parent b835e2b52c
commit e46d8b18ea

View File

@@ -80,7 +80,7 @@ XF86AudioMute
Pause
playerctl --player=spotify play-pause
# Connections and brightness
# Connections
Print
scrot -f -s '%Y%m%d_%H%M%S.png' -e 'mv $f ~/Pictures/';
@@ -91,11 +91,20 @@ Scroll_Lock
nmcli c up "$conn"; \
notify-send -u low "Reset " $conn;
# Brightness
XF86MonBrightness{Down,Up}
xbacklight -{dec,inc} 25; \
notify-send -u low "Brightness: $(xbacklight)"
super + XF86MonBrightness{Down,Up}
xbacklight -{dec,inc} 5; \
notify-send -u low "Brightness: $(xbacklight)"
super + F{3,4}
xbacklight -{dec,inc} 25; \
notify-send -u low "Brightness: $(xbacklight)"
super + shift + F{3,4}
xbacklight -{dec,inc} 5; \
notify-send -u low "Brightness: $(xbacklight)"