Skip to content

Commit 2dae39d

Browse files
committed
Fix minor deficiencies in startup scripts
1 parent f5d195c commit 2dae39d

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

startup/agx_startup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,10 @@ def power_control(
562562
disable_wakeups: bool = True) -> None:
563563
board = board_name()
564564

565+
# if board == "ROG ZENITH II EXTREME":
566+
# print("Power control has been manually disabled for this board for debugging.")
567+
# return
568+
565569
if board not in devices.keys():
566570
print("Computer has not been configured for power control:", board)
567571
return

startup/suspend/agx-resume-user.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ if [ "$(hostnamectl chassis)" = "laptop" ]; then
4141
if pgrep -x "slack" > /dev/null 2>&1; then :; else
4242
flatpak run com.slack.Slack --startup &
4343
fi
44-
elif [ "${SSID}" = "Mupsunet" ]; then
45-
echo "Mupsunet connection detected. Starting personal apps."
44+
elif [ "${SSID}" = "Agnet" ]; then
45+
echo "Agnet connection detected. Starting personal apps."
4646
if pgrep -f "signal-desktop" > /dev/null 2>&1; then :; else
4747
signal-desktop --start-in-tray &
4848
fi

0 commit comments

Comments
 (0)