ArchSetupScripts/post_setup.sh

14 lines
309 B
Bash
Raw Normal View History

2024-11-10 13:58:16 +00:00
#!/bin/bash
xdg-settings set default-web-browser io.github.zen_browser.zen.desktop
2024-11-10 17:29:14 +00:00
if [[ $(which $SHELL) != "/bin/fish" ]]; then
sudo chsh -s /bin/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