Compare commits
No commits in common. "488b05e827265bbacf2a403ea2a44e4e891a2d61" and "e3055147e494fef13fc2e289dfdf7ee9656b750b" have entirely different histories.
488b05e827
...
e3055147e4
1
apps.sh
1
apps.sh
@ -29,6 +29,7 @@ run_apps_install(){
|
||||
"com.valvesoftware.Steam"
|
||||
"com.mattjakeman.ExtensionManager"
|
||||
"org.gnome.design.Emblem"
|
||||
"de.philippun1.turtle"
|
||||
)
|
||||
|
||||
for i in "${flatpak_apps[@]}"; do
|
||||
|
11
cli.sh
11
cli.sh
@ -6,17 +6,12 @@ main(){
|
||||
|
||||
_install_cli(){
|
||||
local name=$1;
|
||||
if $(! command -v "$name" &> /dev/null); then
|
||||
bash ./warn.sh "Installing cli tool: $name"
|
||||
if (pacman -S --needed "$name" --noconfirm >>/dev/null); then
|
||||
bash ./warn.sh "Installing cli tool: $name" # v---- this skips already installed stuff
|
||||
if (sudo pacman -S --needed "$name" --noconfirm >>/dev/null); then
|
||||
bash ./success.sh "Successfully installed cli tool: $name"
|
||||
else
|
||||
bash ./error.sh "Failed: $name"
|
||||
fi
|
||||
else
|
||||
bash ./warn.sh "Skipping: $name"
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
run_cli_install(){
|
||||
@ -35,8 +30,6 @@ run_cli_install(){
|
||||
"nodejs" # <-- hawk tuah
|
||||
"npm" # <-- need unfortunately for work stuff
|
||||
"zellij" # <-- multplexer
|
||||
"lazygit"
|
||||
"yazi-bin"
|
||||
)
|
||||
|
||||
for i in "${cli_tools[@]}"; do
|
||||
|
12
install.sh
12
install.sh
@ -1,17 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# TODO should be applicable to other package managers (dnf, apt, ..)
|
||||
# v--- this is for potential future ideas
|
||||
# flatpak uninstall $(flatpak list --columns=application | grep -i turtle)
|
||||
|
||||
|
||||
|
||||
main(){
|
||||
if [[ "$(whoami)" != "root" ]];then
|
||||
bash ./error.sh "Must be root (current: $USER)";
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
_update_pac
|
||||
bash ./dots.sh;
|
||||
bash ./cli.sh;
|
||||
@ -21,8 +13,8 @@ main(){
|
||||
}
|
||||
|
||||
_update_pac(){
|
||||
pacman -Fy --noconfirm
|
||||
pacman -Syu --noconfirm
|
||||
sudo pacman -Fy --noconfirm
|
||||
sudo pacman -Syu --noconfirm
|
||||
}
|
||||
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
xdg-settings set default-web-browser io.github.zen_browser.zen.desktop
|
||||
|
||||
if [[ $(which $SHELL) != "/bin/fish" ]]; then
|
||||
chsh -s /bin/fish
|
||||
usermod -s /bin/fish $USER
|
||||
sudo chsh -s /bin/fish
|
||||
sudo usermod -s /bin/fish $USER
|
||||
fish
|
||||
echo "Set fish shell, may need to login again..."
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user