diff options
author | self <self@sateoki.xyz> | 2022-03-21 21:56:02 +0000 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-03-21 21:56:02 +0000 |
commit | 8bf0f373b45c4e0ae9b8af372e52e777c7f25417 (patch) | |
tree | 3e9356f33b0190185602fb3d84b9791c5fbd0de6 /setup.sh | |
parent | 6207156be3a0df76be7d09da06c58249bca98377 (diff) |
Updated the setup script a little
Diffstat (limited to 'setup.sh')
-rwxr-xr-x | setup.sh | 31 |
1 files changed, 25 insertions, 6 deletions
@@ -2,8 +2,9 @@ # Installer for my setup for Arch based distro. -# This should be in the user config directory, e.g. ~/.usrconf -# or ~/git as examples of where to install it. +# The dotfiles should be installed in $HOME/git/dotfiles +# for this script to work. + # It should be run as sudo: sudo ./setup.sh # By default, installs both dwm and kde, to just install dwm # pass the parameter "minimal", e.g. @@ -56,6 +57,15 @@ pacman -S plasma kde-applications sddm # TODO: add the dwm entry to XSessions +#################################################################################### +###################### Making some directories for later use ####################### +mkdir -p $HOME/.config +mkdir -p $HOME/.config/zsh +mkdir -p $HOME/.config/newsboat +mkdir -p $HOME/.config/mpd +mkdir -p $HOME/.config/ncmpcpp +mkdir -p $HOME/.local/share/dwm + ##################################################################################### ######## These are only installed in a minimal installation, as a non-minimal ####### ######### install should already contain applications that fit this purpose. ######## @@ -77,7 +87,7 @@ yay -S exa htop # Command line utili pacman -S zoxide ############################### git clone from repo ################################# -git clone git.sateoki.xyz/self/dotfiles . +# TODO: git clone all repos here git clone git.sateoki.xyz/self/st ./inst git clone git.sateoki.xyz/self/dwm ./inst git clone git.sateoki.xyz/self/dmenu ./inst @@ -88,9 +98,18 @@ git clone git.sateoki.xyz/self/dmenu ./inst sh ./scripts/udcmdlink ##### ######################### Set up symlinks to dotfiles ################################ -symmove ./dotfiles/zsh/.zshrc ~/.zshrc -symmove ./dotfiles/zsh/.zshenv ~/.zshenv -symmove ./dotfiles/.xinitrc ~/.xinitrc +ln -s $HOME/git/dotfiles/zsh/.zshrc $HOME/.config/zsh/.zshrc +ln -s $HOME/git/dotfiles/zsh/.zshenv $HOME/.zshenv +ln -s $HOME/git/dotfiles/.xinitrc $HOME/.xinitrc + +# Music +ln -s $HOME/git/dotfiles/mpd.conf $HOME/.config/mpd.conf +ln -s $HOME/git/dotfiles/mpd.conf /etc/mpd.conf +ln -s $HOME/git/dotfiles/ncmpcpp-config $HOME/.config/ncmpcpp/config + +# sddm - only install if MINIMAL="no" + + # TBA the rest # Ensure that in .zshrc, the variable $USRCONFDIR is exported correctly |