36 lines
1.0 KiB
Bash
Executable File
36 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
||
|
||
choice=$(printf "🚀 Applications\n⚙️ Settings\n🖥️ System\n📦 Packages\n🧩 Config\n🖼️ Wallpaper\n🔊 Audio\n👨💻 Dev\n⏻ Power\n📋 Clipboard" | wofi --dmenu --prompt "⚡ Control Center")
|
||
|
||
case "$choice" in
|
||
"🚀 Applications")
|
||
~/.config/hypr/scripts/launcher.sh
|
||
;;
|
||
"⚙️ Settings")
|
||
~/.config/hypr/scripts/settingsmenu.sh
|
||
;;
|
||
"🖥️ System")
|
||
~/.config/hypr/scripts/systemmenu.sh
|
||
;;
|
||
"📦 Packages")
|
||
~/.config/hypr/scripts/packagemenu.sh
|
||
;;
|
||
"🧩 Config")
|
||
~/.config/hypr/scripts/configmenu.sh
|
||
;;
|
||
"🖼️ Wallpaper")
|
||
~/.config/hypr/scripts/wallpapermenu.sh
|
||
;;
|
||
"🔊 Audio")
|
||
~/.config/hypr/scripts/audiomenu.sh
|
||
;;
|
||
"👨💻 Dev")
|
||
~/.config/hypr/scripts/devmenu.sh
|
||
;;
|
||
"⏻ Power")
|
||
~/.config/hypr/scripts/powermenu.sh
|
||
;;
|
||
"📋 Clipboard")
|
||
~/.config/hypr/scripts/clipboard.sh
|
||
;;
|
||
esac |