mirror of
https://github.com/duma799/hyprduma-config.git
synced 2026-05-13 14:11:01 +00:00
48 lines
1.5 KiB
Bash
Executable File
48 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# Script to apply pywal colors to Hyprland, Caelestia shell, and Kitty terminal
|
|
|
|
# Generate pywal colors (this assumes you've already run 'wal -i /path/to/wallpaper')
|
|
# The templates will be automatically processed
|
|
|
|
echo "Applying pywal colors to Hyprland, Caelestia, and Kitty..."
|
|
|
|
# Update Caelestia's wallpaper reference to match the one pywal used
|
|
if [ -f ~/.cache/wal/wal ]; then
|
|
WALLPAPER_PATH=$(cat ~/.cache/wal/wal)
|
|
mkdir -p ~/.local/state/caelestia/wallpaper
|
|
ln -sf "$WALLPAPER_PATH" ~/.local/state/caelestia/wallpaper/current
|
|
echo "$WALLPAPER_PATH" > ~/.local/state/caelestia/wallpaper/path.txt
|
|
echo "✓ Caelestia wallpaper reference updated"
|
|
fi
|
|
|
|
# Copy the generated Caelestia scheme to the proper location
|
|
if [ -f ~/.cache/wal/caelestia-scheme.json ]; then
|
|
mkdir -p ~/.local/state/caelestia
|
|
cp ~/.cache/wal/caelestia-scheme.json ~/.local/state/caelestia/scheme.json
|
|
echo "✓ Caelestia colors updated"
|
|
fi
|
|
|
|
# Reload Hyprland configuration
|
|
if command -v hyprctl &> /dev/null; then
|
|
hyprctl reload
|
|
echo "✓ Hyprland configuration reloaded"
|
|
fi
|
|
|
|
# Restart Caelestia shell to apply new colors
|
|
if pgrep -x "caelestia" > /dev/null; then
|
|
pkill caelestia
|
|
sleep 0.5
|
|
caelestia shell -d &
|
|
echo "✓ Caelestia shell restarted"
|
|
fi
|
|
|
|
# Reload all running Kitty instances
|
|
if command -v kitty &> /dev/null; then
|
|
if pgrep -x "kitty" > /dev/null; then
|
|
killall -SIGUSR1 kitty 2>/dev/null
|
|
echo "✓ Kitty terminal colors reloaded"
|
|
fi
|
|
fi
|
|
|
|
echo "Done! Colors applied successfully."
|