This commit is contained in:
pika 2025-05-19 16:49:46 +02:00
parent 15024d0f57
commit 0b39ad6d94

View file

@ -43,7 +43,7 @@
# │ You can define dependencies for various linux distros here. It will │
# │ automagically be pulled via the $pkgArray[$distro] variable │
# ╰─────────────────────────────────────────────────────────────────────────╯
depsDebian=(bluez mason gcc ninja libdbusmenu-gtk3-dev libgtk-layer-shell-dev libpulse-dev libsass-dev)
depsDebian=(bluez meson gcc ninja libdbusmenu-gtk3-dev libgtk-layer-shell-dev libpulse-dev libsass-dev)
# depsFedora=()
# depsOpensuse=()
# depsArch=()
@ -88,8 +88,8 @@
checkAndInstall gbar-git
;;
debian | ubuntu)
local cloneDir="$(mktemp)"
echo_info "Cloning gBar source into $cloneDir/gbar"
local cloneDir="$(mktemp -d)"
echo_pkg clone "Cloning gBar source into $cloneDir/gbar"
cd "$cloneDir" || mkdir "$cloneDir" && cd "$cloneDir"
git clone --depth=1 https://github.com/scorpion-26/gBar.git gbar && cd gbar
@ -103,7 +103,7 @@
sleep 0.2
if command_exists gBar; then
echo_info "Gbar was installed successfully"
echo_pkg post-installation-check "Gbar was installed successfully"
else
echo_warning "Something went wrong.. maybe.."
fi