Switch back to macOS.

This commit is contained in:
Bartek Stalewski 2024-06-19 16:19:39 +02:00
parent f8866a9eca
commit e819a06cda
No known key found for this signature in database
137 changed files with 192 additions and 23 deletions

View file

@ -1,19 +0,0 @@
#!/bin/sh
# variables
LOCAL_BIN_DIR=${HOME}/.local/bin
XDG_CONFIG_HOME=${HOME}/.config
# prepare local dirs
mkdir -p ${XDG_CONFIG_HOME} ${LOCAL_BIN_DIR}
# install configs
for i in _configs/*; do
rm -rf ${XDG_CONFIG_HOME}/$(basename $i)
ln -sf $(pwd)/${i} ${XDG_CONFIG_HOME}
done
# install scripts
for i in _scripts/*; do
ln -sf $(pwd)/${i} ${LOCAL_BIN_DIR}
done