This commit is contained in:
Yuri Zamyatin 2025-03-30 00:04:54 +00:00
parent b49b7ed34d
commit 171950fc52
3 changed files with 4 additions and 5 deletions

View File

@ -24,6 +24,7 @@ LIST+=(
"float_tui" "nmtui"
"float_tui" "bluetoothctl"
"man" "man"
"float_tui" "node"
"term" "term"
# native
"screen_pick" "screenshot output"

View File

@ -1,6 +1,4 @@
#!/bin/sh
brig="$(brightnessctl set "$1" -m | sed -e 's/.*,\([0-9]*\)%.*/\1/')"
notif_id_file=/dev/shm/workspace-$USER-notify-brig
read -r notif_id < "$notif_id_file"
notify-send -t 2000 -h "int:value:$brig" -a "brightness" "$brig%" \
--replace-id="${notif_id:-99999999}" --print-id > "$notif_id_file"
-h string:x-canonical-private-synchronous:brightness

View File

@ -121,8 +121,8 @@ bindsym --to-code {
$mod+c exec wtype -P XF86Copy
$mod+v exec wtype -P XF86Paste
# media
XF86MonBrightnessDown exec ~/.local/bin/sway/brightness-set-and-notify.sh 5%- && pkill -SIGRTMIN+2 i3blocks
XF86MonBrightnessUp exec ~/.local/bin/sway/brightness-set-and-notify.sh 5%+ && pkill -SIGRTMIN+2 i3blocks
XF86MonBrightnessDown exec ~/.local/bin/sway/brightness-set-and-notify.sh 5%-
XF86MonBrightnessUp exec ~/.local/bin/sway/brightness-set-and-notify.sh 5%
XF86AudioMute exec pactl set-sink-mute \@DEFAULT_SINK@ toggle && pkill -SIGRTMIN+2 i3blocks
XF86AudioLowerVolume exec pactl set-sink-volume \@DEFAULT_SINK@ -5% && pkill -SIGRTMIN+2 i3blocks
XF86AudioRaiseVolume exec pactl set-sink-volume \@DEFAULT_SINK@ +5% && pkill -SIGRTMIN+2 i3blocks