Change directories for programming related content

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-09-03 23:20:10 +02:00
parent 39e0708bfb
commit a924213d21
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
3 changed files with 13 additions and 13 deletions

18
install
View file

@ -26,15 +26,15 @@ HOST="$(hostname)"
# Directories which should be created # Directories which should be created
DIRECTORIES=( DIRECTORIES=(
".local/log" ".local/log"
".local/share/gnupg/" ".local/share/gnupg"
".local/share/vpn/" ".local/share/vpn"
"build" "dev/build"
"dev/projects"
"dev/work/opensource"
"dev/work/projects"
"dev/work/tools"
"downloads" "downloads"
"projects"
"videos" "videos"
"work/opensource"
"work/projects"
"work/tools"
) )
# Files which should be symlinked in the home folder # Files which should be symlinked in the home folder
@ -278,8 +278,8 @@ done
############################################################################### ###############################################################################
print_section "Prepare work tools" print_section "Prepare work tools"
print_log "Installing dde" print_log "Installing dde"
if [ ! -d "${HOME}/work/tools/dde" ]; then if [ ! -d "${HOME}/dev/work/tools/dde" ]; then
git clone "https://github.com/whatwedo/dde" "${HOME}/work/tools/dde" git clone "https://github.com/whatwedo/dde" "${HOME}/dev/work/tools/dde"
fi fi

View file

@ -25,7 +25,7 @@ alias cat="bat"
# Aliases to folders # Aliases to folders
if [ -d "${HOME}/projects" ]; then if [ -d "${HOME}/projects" ]; then
alias pj='cd ${HOME}/projects' alias pj='cd ${HOME}/dev/projects'
fi fi
if [ -d "${HOME}/downloads" ]; then if [ -d "${HOME}/downloads" ]; then
@ -37,7 +37,7 @@ if [ -d "${HOME}/documents" ]; then
fi fi
if [ -d "${HOME}/work" ]; then if [ -d "${HOME}/work" ]; then
alias wo='cd ${HOME}/work' alias wo='cd ${HOME}/dev/work'
fi fi
# Alias for opening my code editor # Alias for opening my code editor

View file

@ -3,6 +3,6 @@ file:///home/severin/dotfiles dotfiles
file:///home/severin/downloads Downloads file:///home/severin/downloads Downloads
file:///home/severin/music Music file:///home/severin/music Music
file:///home/severin/pictures Pictures file:///home/severin/pictures Pictures
file:///home/severin/projects Projects file:///home/severin/dev/projects Projects
file:///home/severin/videos Videos file:///home/severin/videos Videos
file:///home/severin/work Work file:///home/severin/dev/work Work