mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Run SwayOSD as a session service * Restart SwayOSD after clean exits * We don't need the input backend (as we manage the hotkeys in Hyprland) * Ensure we cleanup the old service starter * Not needed * Not needed either * Clean up migration --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
28 lines
1.0 KiB
Bash
Executable File
28 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Finish the installation of Omarchy with items that can only be done after logging in.
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
FIRST_RUN_MODE=~/.local/state/omarchy/first-run.mode
|
|
|
|
if [[ -f $FIRST_RUN_MODE ]]; then
|
|
rm -f "$FIRST_RUN_MODE"
|
|
|
|
bash "$OMARCHY_PATH/install/first-run/battery-monitor.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/recover-internal-monitor.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/cleanup-reboot-sudoers.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/firewall.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/dns-resolver.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/gnome-theme.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/swayosd.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/gtk-primary-paste.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/elephant.sh"
|
|
omarchy-hook-install post-update "$OMARCHY_PATH/install/first-run/install-voxtype.hook"
|
|
sudo rm -f /etc/sudoers.d/first-run
|
|
|
|
bash "$OMARCHY_PATH/install/first-run/welcome.sh"
|
|
bash "$OMARCHY_PATH/install/first-run/wifi.sh"
|
|
fi
|