add condition on post & less & apps

This commit is contained in:
Triston Armstrong 2024-11-10 12:29:14 -05:00
parent 5a69e1c0ce
commit 6fea022bf0
3 changed files with 15 additions and 3 deletions

View File

@ -25,6 +25,11 @@ run_apps_install(){
"org.blender.Blender" "org.blender.Blender"
"org.godotengine.Godot" "org.godotengine.Godot"
"de.haeckerfelix.Shortwave" "de.haeckerfelix.Shortwave"
"org.gnome.Solanum"
"com.valvesoftware.Steam"
"com.mattjakeman.ExtensionManager"
"org.gnome.design.Emblem"
"de.philippun1.turtle"
) )
for i in "${flatpak_apps[@]}"; do for i in "${flatpak_apps[@]}"; do

1
cli.sh
View File

@ -26,6 +26,7 @@ run_cli_install(){
"mingw-w64-x86_64-clang" # <-- expect failure "mingw-w64-x86_64-clang" # <-- expect failure
"flatpak" "flatpak"
"fish" # <-- shell "fish" # <-- shell
"less"
) )
for i in "${cli_tools[@]}"; do for i in "${cli_tools[@]}"; do

View File

@ -2,6 +2,12 @@
xdg-settings set default-web-browser io.github.zen_browser.zen.desktop xdg-settings set default-web-browser io.github.zen_browser.zen.desktop
sudo chsh -s /bin/fish if [[ $(which $SHELL) != "/bin/fish" ]]; then
sudo usermod -s /bin/fish $USER sudo chsh -s /bin/fish
fish sudo usermod -s /bin/fish $USER
fish
echo "Set fish shell, may need to login again..."
else
echo "Fish shell already in use... skipping"
fi