mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
8 lines
330 B
Bash
8 lines
330 B
Bash
echo "Add sample low battery notification hook"
|
|
|
|
mkdir -p ~/.config/omarchy/hooks/battery-low.d
|
|
|
|
if [[ ! -f ~/.config/omarchy/hooks/battery-low.d/play-warning-sound.sample ]]; then
|
|
cp "$OMARCHY_PATH/config/omarchy/hooks/battery-low.d/play-warning-sound.sample" ~/.config/omarchy/hooks/battery-low.d/play-warning-sound.sample
|
|
fi
|