mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
12 lines
379 B
Bash
12 lines
379 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Remove this hook after use
|
|
rm -f "$0"
|
|
|
|
(
|
|
action=$(notify-send -a omarchy-action -u critical --hint=string:omarchy-glyph: "Install Dictation with Voxtype" "Click to install voice dictation for Omarchy." -A "default=Install")
|
|
[[ $action == "default" ]] && omarchy-launch-floating-terminal-with-presentation omarchy-voxtype-install
|
|
) >/dev/null 2>&1 &
|