Ensure all installers have a shebang line to specify bash

Closes #134
This commit is contained in:
David Heinemeier Hansson
2025-07-16 14:19:03 -07:00
parent f4b172e029
commit 12a43ae400
25 changed files with 49 additions and 2 deletions

View File

@ -1,3 +1,5 @@
#!/bin/bash
# Setting the performance profile can make a big difference. By default, most systems seem to start in balanced mode,
# even if they're not running off a battery. So let's make sure that's changed to performance.
yay -S --noconfirm power-profiles-daemon
@ -5,7 +7,7 @@ yay -S --noconfirm power-profiles-daemon
if ls /sys/class/power_supply/BAT* &>/dev/null; then
# This computer runs on a battery
powerprofilesctl set balanced || true
# Enable battery monitoring timer for low battery notifications
systemctl --user enable --now omarchy-battery-monitor.timer || true
else