1 Commits

Author SHA1 Message Date
36c8f17749 Prepare for a first-run flow
Will fill in with the first stuff you should do after getting setup.
Teaching you how to do the basic commands.
2025-07-15 21:23:48 -07:00
3 changed files with 16 additions and 0 deletions

7
bin/omarchy-first-run Executable file
View File

@ -0,0 +1,7 @@
#!/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

View File

@ -2,3 +2,4 @@ exec-once = hypridle & mako & waybar & fcitx5
exec-once = swaybg -i ~/.config/omarchy/current/background -m fill exec-once = swaybg -i ~/.config/omarchy/current/background -m fill
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
exec-once = wl-clip-persist --clipboard regular --all-mime-type-regex '^(?!x-kde-passwordManagerHint).+' exec-once = wl-clip-persist --clipboard regular --all-mime-type-regex '^(?!x-kde-passwordManagerHint).+'
exec-once = ~/.local/share/omarchy/bin/omarchy-first-run

8
first-run/index.html Normal file
View File

@ -0,0 +1,8 @@
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>Hello!</h1>
</body>
</html>