my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
503 B

  1. #!/bin/sh
  2. if [ $# -eq 0 ]; then
  3. # Save Password
  4. read -sp "Password: " password
  5. else
  6. password=$1
  7. fi
  8. # Refresh
  9. echo "$password" | sudo -S apt-get -y update
  10. echo "$password" | sudo -S apt-get -y upgrade
  11. # Basic dependencies
  12. echo "$password" | sudo -S apt-get install -y zsh vim
  13. # Update DemonCloud's Vim config
  14. echo $password | source <(curl -L https://raw.githubusercontent.com/DemonCloud/dotfile/master/install.sh)
  15. # Set theme
  16. xfconf-query -c xsettings -p /Net/ThemeName -s "ceres-pro@2"