mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
8 lines
243 B
Plaintext
8 lines
243 B
Plaintext
![]() |
#!/bin/bash
|
||
|
|
||
|
if [[ ! -f ~/.local/state/omarchy/first-run.marker ]]; then
|
||
|
chromium --new-window --app=file://$HOME/.local/share/omarchy/first-run/index.html
|
||
|
mkdir -p ~/.local/state/omarchy
|
||
|
touch ~/.local/state/omarchy/first-run.marker
|
||
|
fi
|