mirror of
https://github.com/sheptikhinv/my-hyprland.git
synced 2026-02-07 01:11:36 +05:00
14 lines
323 B
Bash
Executable file
14 lines
323 B
Bash
Executable file
#!/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
|