13 lines
280 B
Bash
Executable File
13 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
FIRST_RUN_MODE=~/.local/state/omarchy/first-run.mode
|
|
|
|
if [[ -f FIRST_RUN_MODE ]]; then
|
|
$OMARCHY_PATH/install/first-run/battery-monitor.sh
|
|
$OMARCHY_PATH/install/first-run/firewall.sh
|
|
rm FIRST_RUN_MODE
|
|
sudo rm -f /etc/sudoers.d/first-run &>/dev/null
|
|
fi
|