mirror of
https://github.com/sheptikhinv/my-hyprland.git
synced 2026-02-07 09:21:36 +05:00
Sigma sigma
This commit is contained in:
parent
8eef2f4583
commit
95e23ef59c
9 changed files with 417 additions and 2 deletions
14
rofi/run-rofi.sh
Executable file
14
rofi/run-rofi.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue