blob: 3cfcbaa830e3481c9a43e743e47b12f36e3395d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env bash
# Kill existing sketchybar instances
killall sketchybar
# Wait a moment for processes to terminate
sleep 1
# Start sketchybar with new configuration
sketchybar --config "$HOME/.config/sketchybar/sketchybarrc"
echo "SketchyBar restarted with new aesthetic configuration!"
echo "✨ Features included:"
echo " • Modern Catppuccin color scheme"
echo " • Beautiful aerospace workspace tiles"
echo " • Active workspace highlighting"
echo " • Enhanced battery, volume, and weather widgets"
echo " • Smooth animations and transitions"
echo " • Clean, minimal design"
|