rename directory shortcuts
This commit is contained in:
parent
1e82bbad4e
commit
51c133f90f
4 changed files with 28 additions and 36 deletions
|
@ -1,16 +1,14 @@
|
|||
map Ccac cd "/home/luca/.cache"
|
||||
map Cch cd "/home/luca/.cache"
|
||||
map Ccf cd "/home/luca/.config"
|
||||
map CD cd "/home/luca/Downloads"
|
||||
map Cd cd "/home/luca/Documents"
|
||||
map Cdt cd "/home/luca/.local/share"
|
||||
map Crr cd "/home/luca/.local/src"
|
||||
map Ch cd "/home/luca"
|
||||
map Cm cd "/home/luca/Music"
|
||||
map Cmn cd "/mnt"
|
||||
map Cpp cd "/home/luca/Pictures"
|
||||
map Csc cd "/home/luca/.local/bin"
|
||||
map Csrc cd "/home/luca/.local/src"
|
||||
map Cvv cd "/home/luca/Videos"
|
||||
map Cmn cd "/mnt"
|
||||
map Cdl cd "/home/luca/Downloads"
|
||||
map Cdm cd "/home/luca/Documents"
|
||||
map Cms cd "/home/luca/Music"
|
||||
map Cpc cd "/home/luca/Pictures"
|
||||
map Cvd cd "/home/luca/Videos"
|
||||
map Ebf $$EDITOR "/home/luca/.config/shell/bm-files"
|
||||
map Ebd $$EDITOR "/home/luca/.config/shell/bm-dirs"
|
||||
map Ecfx $$EDITOR "/home/luca/.config/x11/xresources"
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
# You can add comments to these files with #
|
||||
cac ${XDG_CACHE_HOME:-$HOME/.cache}
|
||||
ch ${XDG_CACHE_HOME:-$HOME/.cache}
|
||||
cf ${XDG_CONFIG_HOME:-$HOME/.config}
|
||||
D ${XDG_DOWNLOAD_DIR:-$HOME/Downloads}
|
||||
d ${XDG_DOCUMENTS_DIR:-$HOME/Documents}
|
||||
dt ${XDG_DATA_HOME:-$HOME/.local/share}
|
||||
rr $HOME/.local/src
|
||||
h $HOME
|
||||
m ${XDG_MUSIC_DIR:-$HOME/Music}
|
||||
mn /mnt
|
||||
pp ${XDG_PICTURES_DIR:-$HOME/Pictures}
|
||||
sc $HOME/.local/bin
|
||||
src $HOME/.local/src
|
||||
vv ${XDG_VIDEOS_DIR:-$HOME/Videos}
|
||||
mn /mnt
|
||||
dl ${XDG_DOWNLOAD_DIR:-$HOME/Downloads}
|
||||
dm ${XDG_DOCUMENTS_DIR:-$HOME/Documents}
|
||||
ms ${XDG_MUSIC_DIR:-$HOME/Music}
|
||||
pc ${XDG_PICTURES_DIR:-$HOME/Pictures}
|
||||
vd ${XDG_VIDEOS_DIR:-$HOME/Videos}
|
||||
|
|
|
@ -1,17 +1,15 @@
|
|||
# vim: filetype=sh
|
||||
alias cac="cd /home/luca/.cache && tput cuu1;tput el" \
|
||||
alias ch="cd /home/luca/.cache && tput cuu1;tput el" \
|
||||
cf="cd /home/luca/.config && tput cuu1;tput el" \
|
||||
D="cd /home/luca/Downloads && tput cuu1;tput el" \
|
||||
d="cd /home/luca/Documents && tput cuu1;tput el" \
|
||||
dt="cd /home/luca/.local/share && tput cuu1;tput el" \
|
||||
rr="cd /home/luca/.local/src && tput cuu1;tput el" \
|
||||
h="cd /home/luca && tput cuu1;tput el" \
|
||||
m="cd /home/luca/Music && tput cuu1;tput el" \
|
||||
mn="cd /mnt && tput cuu1;tput el" \
|
||||
pp="cd /home/luca/Pictures && tput cuu1;tput el" \
|
||||
sc="cd /home/luca/.local/bin && tput cuu1;tput el" \
|
||||
src="cd /home/luca/.local/src && tput cuu1;tput el" \
|
||||
vv="cd /home/luca/Videos && tput cuu1;tput el" \
|
||||
mn="cd /mnt && tput cuu1;tput el" \
|
||||
dl="cd /home/luca/Downloads && tput cuu1;tput el" \
|
||||
dm="cd /home/luca/Documents && tput cuu1;tput el" \
|
||||
ms="cd /home/luca/Music && tput cuu1;tput el" \
|
||||
pc="cd /home/luca/Pictures && tput cuu1;tput el" \
|
||||
vd="cd /home/luca/Videos && tput cuu1;tput el" \
|
||||
bf="$EDITOR /home/luca/.config/shell/bm-files" \
|
||||
bd="$EDITOR /home/luca/.config/shell/bm-dirs" \
|
||||
cfx="$EDITOR /home/luca/.config/x11/xresources" \
|
||||
|
|
|
@ -1,16 +1,14 @@
|
|||
hash -d cac=/home/luca/.cache
|
||||
hash -d ch=/home/luca/.cache
|
||||
hash -d cf=/home/luca/.config
|
||||
hash -d D=/home/luca/Downloads
|
||||
hash -d d=/home/luca/Documents
|
||||
hash -d dt=/home/luca/.local/share
|
||||
hash -d rr=/home/luca/.local/src
|
||||
hash -d h=/home/luca
|
||||
hash -d m=/home/luca/Music
|
||||
hash -d mn=/mnt
|
||||
hash -d pp=/home/luca/Pictures
|
||||
hash -d sc=/home/luca/.local/bin
|
||||
hash -d src=/home/luca/.local/src
|
||||
hash -d vv=/home/luca/Videos
|
||||
hash -d mn=/mnt
|
||||
hash -d dl=/home/luca/Downloads
|
||||
hash -d dm=/home/luca/Documents
|
||||
hash -d ms=/home/luca/Music
|
||||
hash -d pc=/home/luca/Pictures
|
||||
hash -d vd=/home/luca/Videos
|
||||
hash -d bf=/home/luca/.config/shell/bm-files
|
||||
hash -d bd=/home/luca/.config/shell/bm-dirs
|
||||
hash -d cfx=/home/luca/.config/x11/xresources
|
||||
|
|
Loading…
Add table
Reference in a new issue