diff --git a/.config/shell/init_dotfiles.sh b/.local/share/dotfiles/setup.sh similarity index 100% rename from .config/shell/init_dotfiles.sh rename to .local/share/dotfiles/setup.sh diff --git a/.profile b/.profile index dec21c0..1d10320 100644 --- a/.profile +++ b/.profile @@ -9,8 +9,8 @@ # Further Info: https://wiki.archlinux.org/title/XDG_Base_Directory export XDG_CACHE_HOME="$HOME/.cache" export XDG_CONFIG_HOME="$HOME/.config" -export XDG_DATA_HOME="$HOME/.local/share" # also set temporarily in ~/.config/shell/init_dotfiles.sh -export XDG_STATE_HOME="$HOME/.local/state" # also set temporarily in ~/.config/shell/init_dotfiles.sh +export XDG_DATA_HOME="$HOME/.local/share" # also set temporarily in $XDG_DATA_HOME/dotfiles/setup.sh +export XDG_STATE_HOME="$HOME/.local/state" # also set temporarily in $XDG_DATA_HOME/dotfiles/setup.sh # Move common tools' config and cache files into XDG directories export BAT_CONFIG_PATH="$XDG_CONFIG_PATH/bat/config" diff --git a/README.md b/README.md index b2b69ba..3376f60 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,8 @@ This repository contains useful (config) files that I use on my machines. On a freshly set up machine, run: ```bash -curl https://code.webartifex.biz/alexander/dotfiles/-/raw/main/.config/shell/init_dotfiles.sh \ - > ./init_dotfiles.sh \ - && source ./init_dotfiles.sh \ - && rm ./init_dotfiles.sh +curl https://code.webartifex.biz/alexander/dotfiles/-/raw/main/.local/share/dotfiles/setup.sh \ + > ./setup.sh && source ./setup.sh && rm ./setup.sh ``` This gives you a local copy of the latest version of this repository