aboutsummaryrefslogtreecommitdiff
path: root/deploy.sh
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2021-04-28 09:31:50 -0500
committerMatt Singleton <matt@xcolour.net>2021-04-28 09:31:50 -0500
commit18c412b2ce2e04989c6d7bffde668abb7ac045ae (patch)
treeaab72e28ad0b7fc217d0bfa9f6fa54bee1aad091 /deploy.sh
parent774c0906676c70b64db91d4d87fb6bf9983cf43d (diff)
swaywm and related config
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/deploy.sh b/deploy.sh
index 7d4f3ac..324a76c 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -47,9 +47,14 @@ vim +BundleInstall +qall
vim +BundleClean +qall
# create local files
-if [ ! -e config/zsh/00-local.zsh ]; then
+if [ ! -e ~/.config/zsh/00-local.zsh ]; then
cp local/local.zsh config/zsh/00-local.zsh
fi
-if [ ! -e config/git/config-local ]; then
+if [ ! -e ~/.config/git/config-local ]; then
cp local/gitconfig-local config/git/config-local
fi
+if [ ! -e ~/.local/share/fonts/sourcecodepro-nerd ]; then
+ mkdir -p ~/.local/share/fonts/sourcecodepro-nerd
+ unzip local/SourceCodePro.zip -d ~/.local/share/fonts/sourcecodepro-nerd
+ echo "Run \'fc-cache -v\' to rebuild your font cache"
+fi