This commit is contained in:
2025-12-09 21:23:12 +02:00
parent c70ad02033
commit 0dabe39be9
15 changed files with 191 additions and 14 deletions

View File

@@ -47,6 +47,19 @@ echo "Installing i3status-rust config..."
cp $SCRIPT_DIR/home_dotfiles/.config/sway/i3status-rust.toml ~/.config/sway/i3status-rust.toml
echo "✓ i3status-rust config installed to ~/.config/sway/i3status-rust.toml"
# === OSRS MODE SCRIPTS ===
echo ""
echo "Installing OSRS mode helper scripts..."
for script in osrs-mode-status.sh osrs-mode-toggle.sh get-focused-window.sh; do
if [ -f "$SCRIPT_DIR/home_dotfiles/.config/sway/$script" ]; then
cp "$SCRIPT_DIR/home_dotfiles/.config/sway/$script" ~/.config/sway/$script
chmod +x ~/.config/sway/$script
echo "✓ Installed ~/.config/sway/$script"
else
echo "$script not found, skipping..."
fi
done
# === WEATHER SCRIPT ===
# Comment out this section if you don't want the weather script
echo ""