1
0
Fork 0

config changes

This commit is contained in:
Luca Bilke 2024-05-23 18:57:09 +02:00
parent 0b61989ac7
commit c90476f5f3
5 changed files with 13 additions and 5 deletions

View File

@ -4,7 +4,7 @@ co $XDG_DOCUMENTS_DIR/dev
dk $XDG_DESKTOP_DIR
dl $XDG_DOWNLOAD_DIR
dm $XDG_DOCUMENTS_DIR
ds $STOW_DIR/dots
ds $XDG_DATA_HOME/dots
dt $XDG_DATA_HOME
e /etc
h $HOME

View File

@ -5,7 +5,7 @@ map gco cd ~/Documents/dev
map gdk cd ~/Desktop
map gdl cd ~/Downloads
map gdm cd ~/Documents
map gds cd ~/.local/share/stow/dots
map gds cd ~/.local/share/dots
map gdt cd ~/.local/share
map ge cd /etc
map gh cd ~

View File

@ -1 +1 @@
../../../../../../../Documents/dev/tralios/tralios-kube/_kube
../../../Documents/dev/tralios/tralios-kube/_kube

View File

@ -5,7 +5,7 @@ hash -d co=~/Documents/dev
hash -d dk=~/Desktop
hash -d dl=~/Downloads
hash -d dm=~/Documents
hash -d ds=~/.local/share/stow/dots
hash -d ds=~/.local/share/dots
hash -d dt=~/.local/share
hash -d e=/etc
hash -d h=~

View File

@ -20,7 +20,7 @@ baregit() {
git clone --bare git@git.snaile.de:luca/dotfiles "$gitdir"
baregit checkout
baregit config status.showUntrackedFiles no
# baregit config status.showUntrackedFiles no
cd "$target" || exit
for f in *; do
@ -30,7 +30,15 @@ baregit() {
}
done
cd - || exit
cat <<EOF >>"$gitdir/info/exclude"
/*
!/\.config
!/\.local
/\.local/share/dots
/\.local/share/service
EOF
echo ".local/share/dots" >>"$gitdir/info/exclude"
}