8 lines
210 B
Bash
Executable File
8 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ ! -f ~/.local/state/omarchy/after-first-run.mode ]]; then
|
|
mkdir -p ~/.local/state/omarchy
|
|
touch ~/.local/state/omarchy/after-first-run.mode
|
|
uwsm app -- gtk-launch "Omarchy Manual" &
|
|
fi
|