Automated update

This commit is contained in:
klein panic
2024-08-20 17:43:39 -04:00
parent e4b5b217aa
commit 59968f2a3b
3 changed files with 8 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
# Suckless Installs - Programs associated with my window manager, and my window manager. # Suckless Installs - Programs associated with my window manager, and my window manager.
## Purpose ## Purpose
I pretty much use this as my backup system. I pretty much use this as my backup system (for my window manage)

View File

@@ -32,7 +32,11 @@ for pkg in "${requires_packages[@]}"; do
echo "Package $pkg is installed already. YAY" echo "Package $pkg is installed already. YAY"
fi fi
done done
sudo chmod +x /home/klein/DynamicWindowManagement//customstatusbar/statusbars/statusbar.sh sudo chmod +x statusbar.sh
sudo ln -s /home/klein/DynamicWindowManagement/customstatusbar/statusbars/statusbar.sh /usr/local/bin/statusbar sudo cp statusbar.sh /usr/local/bin/statusbar
PREFIX="$HOME/.local/share/statusbar"
mkdir -p "$PREFIX"
cp colorvars.sh "$PREFIX"
echo "Installation done. Run statusbar in shell. Installed to local bin" echo "Installation done. Run statusbar in shell. Installed to local bin"

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Source color vars # Source color vars
source /home/klein/DynamicWindowManagement/customstatusbar/statusbars/colorvars.sh source "$HOME/.local/share/statusbar/colorvars.sh"
# Define Basic Dimentions # Define Basic Dimentions
base_x=0 base_x=0