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