new menus

This commit is contained in:
Never Gude 2025-12-30 22:04:10 +01:00
parent 93dc9e6ea5
commit fac4425ace
7 changed files with 41 additions and 15 deletions

12
.local/scripts/actionmenu.fish Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env fish
set options "󰐓 Clear Playlist" "󰌾 Lock"
set input (menu $options)
switch $input
case $options[1]
mpc clear
case $options[2]
exec swaylock
end