25 lines
964 B
Bash
Executable File
25 lines
964 B
Bash
Executable File
#!/bin/sh
|
|
# ____ _ _ __ __ _
|
|
# / ___|| |_ __ _ _ __| |_ \ \ / /_ _ _ _| |__ __ _ _ __
|
|
# \___ \| __/ _` | '__| __| \ \ /\ / / _` | | | | '_ \ / _` | '__|
|
|
# ___) | || (_| | | | |_ \ V V / (_| | |_| | |_) | (_| | |
|
|
# |____/ \__\__,_|_| \__| \_/\_/ \__,_|\__, |_.__/ \__,_|_|
|
|
# |___/
|
|
# by Stephan Raabe (2023)
|
|
# -----------------------------------------------------
|
|
|
|
# -----------------------------------------------------
|
|
# Quit running waybar instances
|
|
# -----------------------------------------------------
|
|
killall waybar
|
|
|
|
# -----------------------------------------------------
|
|
# Loading the configuration based on the username
|
|
# -----------------------------------------------------
|
|
if [[ $USER = "raabe2" ]]
|
|
then
|
|
waybar -c ~/dotfiles/waybar/myconfig & -s ~/dotfiles/waybar/style.css
|
|
else
|
|
waybar &
|
|
fi
|