mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00
10 lines
308 B
Bash
Executable File
10 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Overwrite local waybar settings with the latest in Omarchy
|
|
cp -f ~/.local/share/omarchy/config/waybar/config ~/.config/waybar/ 2>/dev/null
|
|
cp -f ~/.local/share/omarchy/config/waybar/style.css ~/.config/waybar/ 2>/dev/null
|
|
|
|
# Restart waybar
|
|
pkill waybar &>/dev/null
|
|
setsid waybar &>/dev/null &
|