forked from assada/dotfiles
init commit
This commit is contained in:
22
sway/waybar/scripts/swap.sh
Executable file
22
sway/waybar/scripts/swap.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Set the path to the config and style files
|
||||
config_file="${HOME}/.config/sway/waybar/config"
|
||||
config_background_file="${HOME}/.config/sway/waybar/config-background"
|
||||
style_file="${HOME}/.config/sway/waybar/style.css"
|
||||
style_background_file="${HOME}/.config/sway/waybar/style-background.css"
|
||||
|
||||
# Swap names of config files
|
||||
mv "${config_file}" "${config_file}.temp"
|
||||
mv "${config_background_file}" "${config_file}"
|
||||
mv "${config_file}.temp" "${config_background_file}"
|
||||
|
||||
# Swap names of style files
|
||||
mv "${style_file}" "${style_file}.temp"
|
||||
mv "${style_background_file}" "${style_file}"
|
||||
mv "${style_file}.temp" "${style_background_file}"
|
||||
|
||||
echo "File names swapped successfully!"
|
||||
|
||||
pkill waybar
|
||||
~/.config/sway/scripts/statusbar &
|
||||
Reference in New Issue
Block a user