mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-21 16:29:57 -05:00
11 lines
222 B
Bash
Executable File
11 lines
222 B
Bash
Executable File
#!/usr/bin/bash
|
|
cd ~/.config/eww
|
|
state=$(eww get osd_bright)
|
|
|
|
if [[ "$1" == "--open" ]]; then
|
|
eww update osd_vol=true
|
|
elif [[ "$1" == "--close" ]]; then
|
|
eww update osd_vol=false
|
|
else
|
|
eww update osd_vol=true
|
|
fi |