# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
-XDG_DESKTOP_DIR="$HOME/Desktop"
+XDG_DESKTOP_DIR="$HOME/Nextcloud/Desktop"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
-XDG_TEMPLATES_DIR="$HOME/Templates"
-XDG_PUBLICSHARE_DIR="$HOME/Public"
-XDG_DOCUMENTS_DIR="$HOME/Documents"
-XDG_MUSIC_DIR="$HOME/Music"
-XDG_PICTURES_DIR="$HOME/Pictures"
-XDG_VIDEOS_DIR="$HOME/Videos"
+XDG_TEMPLATES_DIR="$HOME/Nextcloud/Templates"
+XDG_PUBLICSHARE_DIR="$HOME/Nextcloud/Public"
+XDG_DOCUMENTS_DIR="$HOME/Nextcloud/Documents"
+XDG_MUSIC_DIR="$HOME/Nextcloud/Music"
+XDG_PICTURES_DIR="$HOME/Nextcloud/Pictures"
+XDG_VIDEOS_DIR="$HOME/Nextcloud/Videos"
#!/usr/bin/env bash
-git init --bare $HOME/.dotfiles
-
-# Define githome function
-function dotfiles()
+# Define dit (dotfiles-git) function
+function dit()
{
git --git-dir=$HOME/.dotfiles --work-tree=$HOME "$@"
}
# Initial setup
-dotfiles config --local status.showUntrackedFiles no
-dotfiles remote add origin git@jaza.me:jaz/dotfiles.git
-dotfiles fetch
-dotfiles reset --hard origin/master
-dotfiles branch -u origin/master
+dit init
+dit config --local status.showUntrackedFiles no
+dit remote add origin git@jaza.me:jaz/dotfiles.git
+dit fetch
+dit reset --hard origin/master
+dit branch -u origin/master