aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2019-10-14 15:26:01 +0100
committerYann Herklotz <git@yannherklotz.com>2019-10-14 15:26:01 +0100
commit1938517aa5aec927ec7309d1ac363b71368d8649 (patch)
tree38ba86d76e3b5e6b58a06e0e1fa1d8581d572a5a /install.sh
parentf40a84857bb2e02b5dab696743b0557f891c08ab (diff)
downloaddotfiles-1938517aa5aec927ec7309d1ac363b71368d8649.tar.gz
dotfiles-1938517aa5aec927ec7309d1ac363b71368d8649.zip
Add rofi config
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index b973b97..7a412cb 100755
--- a/install.sh
+++ b/install.sh
@@ -57,6 +57,7 @@ for i in "$@"; do
ncmpcpp) NCMPCPP=1; NOT_ALL=1;;
mpd) MPD=1; NOT_ALL=1;;
bspwm) BSPWM=1; NOT_ALL=1;;
+ rofi) ROFI=1; NOT_ALL=1;;
*)
print_help
@@ -139,3 +140,9 @@ if [[ ! -z $BSPWM ]] || [[ -z $NOT_ALL ]]; then
mk ~/.config/sxhkd
ln_configs sxhkd/sxhkdrc ~/.config/sxhkd/sxhkdrc
fi
+
+if [[ ! -z $ROFI ]] || [[ -z $NOT_ALL ]]; then
+ echo "Installing rofi config..."
+ mk ~/.config/rofi
+ ln_configs rofi/config ~/.config/rofi/config
+fi