spacing update

This commit is contained in:
2025-10-04 23:00:58 +02:00
parent 5950cd3c8e
commit 989d382ee6

View File

@@ -4,51 +4,51 @@
# run the 02_setup_programs.sh first # run the 02_setup_programs.sh first
installed() { installed() {
if command -v "$1" > /dev/null 2>&1 ; then if command -v "$1" >/dev/null 2>&1; then
return 0 return 0
fi fi
return 1 return 1
} }
# brave # brave
if ! installed "brave" ; then if ! installed "brave"; then
yay -S --noconfirm brave-bin yay -S --noconfirm brave-bin
fi fi
# obsidian # obsidian
if ! installed "obsidian" ; then if ! installed "obsidian"; then
sudo pacman -S --noconfirm obsidian sudo pacman -S --noconfirm obsidian
fi fi
# keepassxc # keepassxc
if ! installed "keepassxc" ; then if ! installed "keepassxc"; then
sudo pacman -S --noconfirm keepassxc sudo pacman -S --noconfirm keepassxc
fi fi
# syncthing # syncthing
if ! installed "syncthing" ; then if ! installed "syncthing"; then
sudo pacman -S --noconfirm syncthing sudo pacman -S --noconfirm syncthing
systemctl --user enable syncthing systemctl --user enable syncthing
systemctl --user start syncthing systemctl --user start syncthing
fi fi
# libreoffice # libreoffice
if ! installed "libreoffice" ; then if ! installed "libreoffice"; then
sudo pacman -S --noconfirm libreoffice-still sudo pacman -S --noconfirm libreoffice-still
fi fi
# inkscape # inkscape
if ! installed "inkscape" ; then if ! installed "inkscape"; then
sudo pacman -S --noconfirm inkscape sudo pacman -S --noconfirm inkscape
fi fi
# gimp # gimp
if ! installed "gimp" ; then if ! installed "gimp"; then
sudo pacman -S --noconfirm gimp sudo pacman -S --noconfirm gimp
fi fi
# audacity # audacity
if ! installed "audacity" ; then if ! installed "audacity"; then
sudo pacman -S --noconfirm audacity sudo pacman -S --noconfirm audacity
fi fi