24 lines
736 B
Bash
Executable File
24 lines
736 B
Bash
Executable File
#!/bin/bash
|
|
|
|
choice=$(printf " Ask AI\n Generate Command\n Explain Clipboard\n Analyze Logs\n Generate Code\n AI Shell" | wofi --dmenu --prompt "AI Tools")
|
|
|
|
case "$choice" in
|
|
" Ask AI")
|
|
~/.config/hypr/scripts/ai-stuff/ai-prompt.sh
|
|
;;
|
|
" Generate Command")
|
|
~/.config/hypr/scripts/ai-stuff/ai-command.sh
|
|
;;
|
|
" Explain Clipboard")
|
|
~/.config/hypr/scripts/ai-stuff/ai-clipboard.sh
|
|
;;
|
|
" Analyze Logs")
|
|
~/.config/hypr/scripts/ai-stuff/ai-logs.sh
|
|
;;
|
|
" Generate Code")
|
|
~/.config/hypr/scripts/ai-stuff/ai-code.sh
|
|
;;
|
|
" AI Shell")
|
|
~/.config/hypr/scripts/ai-stuff/ai-shell.sh
|
|
;;
|
|
esac |