From 989d382ee6bf2c859dbb2f535aef8b803fcaf464 Mon Sep 17 00:00:00 2001 From: Simon Studer Date: Sat, 4 Oct 2025 23:00:58 +0200 Subject: [PATCH] spacing update --- scripts/03_setup_gui_programs.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/03_setup_gui_programs.sh b/scripts/03_setup_gui_programs.sh index c97f1d5..005bfae 100755 --- a/scripts/03_setup_gui_programs.sh +++ b/scripts/03_setup_gui_programs.sh @@ -4,51 +4,51 @@ # run the 02_setup_programs.sh first installed() { - if command -v "$1" > /dev/null 2>&1 ; then + if command -v "$1" >/dev/null 2>&1; then return 0 fi return 1 } # brave -if ! installed "brave" ; then +if ! installed "brave"; then yay -S --noconfirm brave-bin fi # obsidian -if ! installed "obsidian" ; then +if ! installed "obsidian"; then sudo pacman -S --noconfirm obsidian fi # keepassxc -if ! installed "keepassxc" ; then +if ! installed "keepassxc"; then sudo pacman -S --noconfirm keepassxc fi # syncthing -if ! installed "syncthing" ; then +if ! installed "syncthing"; then sudo pacman -S --noconfirm syncthing systemctl --user enable syncthing systemctl --user start syncthing fi # libreoffice -if ! installed "libreoffice" ; then +if ! installed "libreoffice"; then sudo pacman -S --noconfirm libreoffice-still fi # inkscape -if ! installed "inkscape" ; then +if ! installed "inkscape"; then sudo pacman -S --noconfirm inkscape fi # gimp -if ! installed "gimp" ; then +if ! installed "gimp"; then sudo pacman -S --noconfirm gimp fi # audacity -if ! installed "audacity" ; then +if ! installed "audacity"; then sudo pacman -S --noconfirm audacity fi