1
0
Fork 0

new bookmark and xdg_state dir

This commit is contained in:
Luca Bilke 2023-06-15 11:47:02 +02:00
parent f02fd7a3b8
commit 865fab517d
No known key found for this signature in database
GPG Key ID: 7B77C51E8C779E75
5 changed files with 5 additions and 0 deletions

View File

@ -8,6 +8,7 @@ map gsc cd "/home/luca/.local/bin"
map gmn cd "/mnt"
map gdl cd "/home/luca/Downloads"
map gdm cd "/home/luca/Documents"
map gdk cd "/home/luca/Documents"
map gms cd "/home/luca/Music"
map gpc cd "/home/luca/Pictures"
map gvd cd "/home/luca/Videos"

View File

@ -61,6 +61,7 @@ export XDG_VIDEOS_DIR="$HOME/Videos"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_STATE_HOME="$HOME/.local/state"
export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc"
export STOW_DIR="$XDG_DATA_HOME/stow"
export DOTS_DIR="$STOW_DIR/dots"

View File

@ -8,6 +8,7 @@ hash -d sc=/home/luca/.local/bin
hash -d mn=/mnt
hash -d dl=/home/luca/Downloads
hash -d dm=/home/luca/Documents
hash -d dk=/home/luca/Documents
hash -d ms=/home/luca/Music
hash -d pc=/home/luca/Pictures
hash -d vd=/home/luca/Videos

View File

@ -9,6 +9,7 @@ sc="cd /home/luca/.local/bin" \
mn="cd /mnt" \
dl="cd /home/luca/Downloads" \
dm="cd /home/luca/Documents" \
dk="cd /home/luca/Documents" \
ms="cd /home/luca/Music" \
pc="cd /home/luca/Pictures" \
vd="cd /home/luca/Videos" \

View File

@ -9,6 +9,7 @@ sc $HOME/.local/bin
mn /mnt
dl ${XDG_DOWNLOAD_DIR:-$HOME/Downloads}
dm ${XDG_DOCUMENTS_DIR:-$HOME/Documents}
dk ${XDG_DOCUMENTS_DIR:-$HOME/Desktop}
ms ${XDG_MUSIC_DIR:-$HOME/Music}
pc ${XDG_PICTURES_DIR:-$HOME/Pictures}
vd ${XDG_VIDEOS_DIR:-$HOME/Videos}