20 lines
320 B
Bash
Executable File
20 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# GUI Programs
|
|
# run the 02_setup_programs.sh first
|
|
|
|
# brave
|
|
paru -S --noconfirm brave-bin
|
|
|
|
# obsidian
|
|
sudo pacman -S --noconfirm obsidian
|
|
|
|
# keepassxc
|
|
sudo pacman -S --noconfirm keepassxc
|
|
|
|
# syncthing
|
|
sudo pacman -S --noconfirm syncthing
|
|
systemctl --user enable syncthing
|
|
systemctl --user start syncthing
|
|
|