Add config for hypr and waybar

This commit is contained in:
Anthony Oteri
2023-08-29 17:33:19 -04:00
parent 681ee9f819
commit c57032a049
9 changed files with 836 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/bin/sh
# ____ _ _ __ __ _
# / ___|| |_ __ _ _ __| |_ \ \ / /_ _ _ _| |__ __ _ _ __
# \___ \| __/ _` | '__| __| \ \ /\ / / _` | | | | '_ \ / _` | '__|
# ___) | || (_| | | | |_ \ V V / (_| | |_| | |_) | (_| | |
# |____/ \__\__,_|_| \__| \_/\_/ \__,_|\__, |_.__/ \__,_|_|
# |___/
# by Stephan Raabe (2023)
# -----------------------------------------------------
# -----------------------------------------------------
# Quit running waybar instances
# -----------------------------------------------------
killall waybar
# -----------------------------------------------------
# Loading the configuration based on the username
# -----------------------------------------------------
if [[ $USER = "raabe" ]]
then
waybar -c ~/dotfiles/waybar/myconfig &
else
waybar &
fi