diff --git a/bin/omarchy-cmd-first-run b/bin/omarchy-cmd-first-run index b9e72f2..0b15f86 100755 --- a/bin/omarchy-cmd-first-run +++ b/bin/omarchy-cmd-first-run @@ -9,5 +9,6 @@ if [[ -f "$FIRST_RUN_MODE" ]]; then bash "$OMARCHY_PATH/install/first-run/battery-monitor.sh" bash "$OMARCHY_PATH/install/first-run/firewall.sh" bash "$OMARCHY_PATH/install/first-run/gnome-theme.sh" + bash "$OMARCHY_PATH/install/first-run/wifi.sh" sudo rm -f /etc/sudoers.d/first-run fi diff --git a/install/first-run/wifi.sh b/install/first-run/wifi.sh new file mode 100755 index 0000000..27916b7 --- /dev/null +++ b/install/first-run/wifi.sh @@ -0,0 +1,3 @@ +if ! ping -c5 -W1 1.1.1.1 >/dev/null 2>&1; then + alacritty --class=Impala -e impala +fi