When i tried installing this waybar for my own i used your install script that essentially clones this repo and moves the neccesary folders into the your .config so that u can run the waybar as how its supposed to look etc however in the command there is a part where u move the waybar into the .config:
#download waybar directory
git clone --depth=1 --filter=blob:none --no-checkout https://github.com/cybrcore/cybr-waybar.git && cd cybr-waybar && git sparse-checkout init --cone && git sparse-checkout set waybar && git checkout main && mv waybar ~/.config/ && cd ~ && rm -rf cybr-waybar
This didnt work for me as there was assumed that the repo itself has a folder called waybar and tried to move it however this repo does not have such a folder which is why it didnt move it into the .config files for me.
I used the following to clone n install it instead:
"
git clone --depth=1 https://github.com/cybrcore/cybr-waybar.git
mkdir -p ~/.config/waybar
cp -r cybr-waybar/scripts cybr-waybar/svg cybr-waybar/config.jsonc cybr-waybar/modules.jsonc cybr-waybar/style.css ~/.config/waybar/
cd ~ && rm -rf cybr-waybar
chmod +x ~/.config/waybar/scripts/*
"
When i tried installing this waybar for my own i used your install script that essentially clones this repo and moves the neccesary folders into the your .config so that u can run the waybar as how its supposed to look etc however in the command there is a part where u move the waybar into the .config:
#download waybar directory
git clone --depth=1 --filter=blob:none --no-checkout https://github.com/cybrcore/cybr-waybar.git && cd cybr-waybar && git sparse-checkout init --cone && git sparse-checkout set waybar && git checkout main && mv waybar ~/.config/ && cd ~ && rm -rf cybr-waybar
This didnt work for me as there was assumed that the repo itself has a folder called waybar and tried to move it however this repo does not have such a folder which is why it didnt move it into the .config files for me.
I used the following to clone n install it instead:
"
git clone --depth=1 https://github.com/cybrcore/cybr-waybar.git
mkdir -p ~/.config/waybar
cp -r cybr-waybar/scripts cybr-waybar/svg cybr-waybar/config.jsonc cybr-waybar/modules.jsonc cybr-waybar/style.css ~/.config/waybar/
cd ~ && rm -rf cybr-waybar
chmod +x ~/.config/waybar/scripts/*
"