]> git.zndr.dk Git - dotfiles.git/commitdiff
XDG directories mapped to Nextcloud
authorJannik ZANDER <jannikz@gmail.com>
Sun, 23 Sep 2018 13:26:13 +0000 (15:26 +0200)
committerJannik ZANDER <jannikz@gmail.com>
Sun, 23 Sep 2018 13:26:13 +0000 (15:26 +0200)
.config/user-dirs.dirs
README.md
bin/dotfiles.sh

index 7f9a959317901f152dec35eff8550c12b8f73e6b..e8ef005349c05a27800b322ea955e1560978d384 100644 (file)
@@ -5,11 +5,11 @@
 # 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"
index bab71a7b6cd96f5ebdf6085ad36decc9f4d09735..74bd589c719b0a06e703ec588b71aa2e405e6882 100644 (file)
--- a/README.md
+++ b/README.md
@@ -8,6 +8,6 @@
 
 >     $ ./dotfiles.sh
 
-3) Now you can manage dotfiles with the command 'dotfiles' (alias for git)
+3) Now you can manage dotfiles with the command 'dit' (alias for git on dotfiles)
 
 >     $ dotfiles <command>
index 34a928afe79993aa92fe5768233e0999f981bded..e9476e245990e9eeae801940b62aa9aab3a59ddb 100755 (executable)
@@ -1,17 +1,16 @@
 #!/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