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
|
2024-11-11 05:45:28 +00:00
|
|
|
chsh -s /bin/fish
|
|
|
|
usermod -s /bin/fish $USER
|
2024-11-10 17:29:14 +00:00
|
|
|
fish
|
|
|
|
echo "Set fish shell, may need to login again..."
|
|
|
|
else
|
|
|
|
echo "Fish shell already in use... skipping"
|
|
|
|
fi
|
|
|
|
|
2024-11-11 07:44:23 +00:00
|
|
|
############### YAZI CONFIGS (temporary) ############
|
|
|
|
git clone https://github.com/BennyOe/tokyo-night.yazi.git ~/.config/yazi/flavors/tokyo-night.yazi
|
|
|
|
path="$HOME/.config/yazi/theme.toml"
|
|
|
|
if [[ ! -e $path ]];then
|
|
|
|
bash ./warn.sh "Updating yazi file"
|
|
|
|
echo "[flavor]" >> $path
|
|
|
|
echo "use = \"tokyo-night\"" >> $path
|
|
|
|
fi
|
|
|
|
|
|
|
|
############### TMUX CONFIGS (temporary) ############
|
|
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|