added zsh to intsall scripts
This commit is contained in:
parent
9ca3b2df33
commit
e6de1c3a33
@ -29,6 +29,42 @@ if command -v fish &> /dev/null; then
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# set shell to zsh
|
||||||
|
if command -v zsh &> /dev/null; then
|
||||||
|
read -r -p "You have the fish shell installed, would you like to set this as your default shell? [Y/n] " input
|
||||||
|
case $input in
|
||||||
|
[nN][oO] | [nN])
|
||||||
|
echo "Okay, not setting shell."
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Okay, setting shell to zsh."
|
||||||
|
chsh -s `which zsh`
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
read -r -p "Would you also like to install oh-my-zsh? [Y/n]" input
|
||||||
|
case $input in
|
||||||
|
[nN][oO] | [nN])
|
||||||
|
echo "Okay, not installing."
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Installing oh-my-zsh."
|
||||||
|
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
read -r -p "Would you also like to install my zsh theme? (depends on oh-my-zsh) [Y/n]" input
|
||||||
|
case $input in
|
||||||
|
[nN][oO] | [nN])
|
||||||
|
echo "Okay, not installing."
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Installing theme."
|
||||||
|
ln .config/zsh/themes/inkletblotsh.zsh-theme .oh-my-zsh/custom/themes/inkletblotsh.zsh-theme
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
# make a very rudimentary attempt to configure lightdm
|
# make a very rudimentary attempt to configure lightdm
|
||||||
if command -v lightdm &> /dev/null; then
|
if command -v lightdm &> /dev/null; then
|
||||||
echo "You have lightdm installed, I'm assuming you also have my chosen theme lightdm-webkit-theme-litarvan installed as well."
|
echo "You have lightdm installed, I'm assuming you also have my chosen theme lightdm-webkit-theme-litarvan installed as well."
|
||||||
|
|||||||
@ -59,7 +59,7 @@ DEPENDENCIES_LAPTOP_END
|
|||||||
DEFAULTS_START
|
DEFAULTS_START
|
||||||
evince
|
evince
|
||||||
firefox
|
firefox
|
||||||
fish
|
zsh
|
||||||
alacritty
|
alacritty
|
||||||
thunar
|
thunar
|
||||||
newsboat
|
newsboat
|
||||||
@ -96,6 +96,7 @@ colorpicker-ym1234-git
|
|||||||
ansible
|
ansible
|
||||||
android-sdk-platform-tools
|
android-sdk-platform-tools
|
||||||
runelite
|
runelite
|
||||||
|
fish
|
||||||
slack-desktop
|
slack-desktop
|
||||||
barrier
|
barrier
|
||||||
todoist-electron
|
todoist-electron
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user