dotfiles/.symlinks

25 lines
878 B
Plaintext
Raw Normal View History

2019-04-04 02:48:34 +00:00
#!/usr/bin/fish
2020-06-24 03:48:07 +00:00
for i in Documents Downloads Music Pictures Videos
2020-06-19 23:09:38 +00:00
rmdir ~/$i
2019-04-04 02:48:34 +00:00
ln -s $D/$i ~/$i
end
2020-01-11 20:28:38 +00:00
for i in '# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line youre
# interested in. All local changes will be retained on the next run.
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/"
XDG_DOWNLOAD_DIR="/mnt/LocalDiskD/Downloads"
2020-06-24 03:48:07 +00:00
XDG_DOCUMENTS_DIR="/mnt/LocalDiskD/Documents"
2020-01-11 20:28:38 +00:00
XDG_MUSIC_DIR="/mnt/LocalDiskD/Music"
XDG_PICTURES_DIR="/mnt/LocalDiskD/Pictures"
XDG_VIDEOS_DIR="/mnt/LocalDiskD/Videos"
XDG_TEMPLATES_DIR="$HOME/"
XDG_PUBLICSHARE_DIR="$HOME/"'
2020-06-19 23:09:38 +00:00
echo $i > ~/.config/user-dirs.dir
2020-01-11 20:28:38 +00:00
end