diff options
author | Jordi Pakey-Rodriguez <jordi@0xdec.im> | 2018-09-30 23:04:15 -0700 |
---|---|---|
committer | Jordi Pakey-Rodriguez <jordi@0xdec.im> | 2018-09-30 23:04:15 -0700 |
commit | cbdabe048531bdbfd857619de863010099938bc7 (patch) | |
tree | ba2c5b6441b0da71c248dde19aa577b66d80721b /hook/rofi.sh | |
parent | edfd5063bee6bcd18ddd6e9d1c1f2a629d719508 (diff) |
Make sure shell hook doesn't overwrite config
Addresses #8
Diffstat (limited to 'hook/rofi.sh')
-rwxr-xr-x | hook/rofi.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hook/rofi.sh b/hook/rofi.sh index 816aac7..ca739bd 100755 --- a/hook/rofi.sh +++ b/hook/rofi.sh @@ -1,9 +1,10 @@ #!/usr/bin/env bash + rofi_config_file=$HOME/.config/rofi/config rofi_themes_dir=$HOME/sources/base16-rofi/themes - rofi_theme_file=$rofi_themes_dir/base16-$BASE16_THEME.config -if [ -f "$rofi_theme_file" ] && [ -f $rofi_config_file ]; then + +if ![ -f $rofi_config_file ] && [ -f "$rofi_theme_file" ]; then cp "$rofi_theme_file" "$rofi_config_file" echo 'Rofi theme updated' fi |