mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
11 lines
310 B
Bash
11 lines
310 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Remove this hook after use
|
|
rm -f "$0"
|
|
|
|
if [[ -n $(omarchy-notification-send -u critical -g "Install Dictation with Voxtype" "Click to install voice dictation for Omarchy." -a) ]]; then
|
|
omarchy-launch-floating-terminal-with-presentation omarchy-voxtype-install
|
|
fi >/dev/null 2>&1 &
|