Sigma sigma

This commit is contained in:
Вячеслав 2025-07-25 23:54:07 +05:00
parent 8eef2f4583
commit 95e23ef59c
9 changed files with 417 additions and 2 deletions

14
rofi/run-rofi.sh Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
options="one
two
three"
theme=${1:-$HOME/.config/rofi/config.rasi}
selection=$(echo -e "${options}" | rofi -dmenu -config $theme)
case "${selection}" in
"one")
notify-send "run_rofi.sh" "one";;
"two")
notify-send "run_rofi.sh" "two";;
"three")
notify-send "run_rofi.sh" "three";;
esac