diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | hook/rofi.sh | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -21,7 +21,7 @@ ln -s base16-rofi/themes/base16-default-dark.config >> ~/.config/rofi/config ### Base16-Shell Hook -For Rofi < 1.4 this repo also provides a hook to switch the colorscheme automatically when a base16_shell theme is set. The setup is pretty straightforward: +For Rofi < 1.4 this repo also provides a hook to switch the colorscheme automatically when a base16_shell theme is set. Note that for now, this only works when there is no existing Rofi config file (to avoid overwriting it). The setup is pretty straightforward: ``` > export BASE16_SHELL_HOOKS=$HOME/.config/base16-shell/hooks 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 |