Move to .local/share by local tradition

This commit is contained in:
David Heinemeier Hansson 2024-05-26 19:54:30 -07:00
parent 9e3156b279
commit f5e913de51
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
sudo apt update -y
sudo apt install -y curl git
git clone https://x ~/.omakub
source ~/.omakub/install.sh
git clone https://x ~/.local/share/omakub
source ~/.local/share/omakub/install.sh

View File

@ -5,7 +5,7 @@ sudo apt update -y
sudo apt install -y curl git
# Run installers
for script in ~/.omakub/install/*.sh; do source $script; done
for script in ~/.local/share/omakub/install/*.sh; do source $script; done
# Reboot to pickup changes
read -p "Ready to reboot the system for all settings to take effect? [Y/n]: " response