diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-03-09 14:16:43 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-03-09 14:16:43 +0100 |
commit | 3be98e5ef5247042fd219dded572910305b1a5a4 (patch) | |
tree | 43b0f170be0cae8559e582415f9575828ca4e6b3 /.local/share/mode/switch.d/fcitx5 | |
parent | 2dc5ec7085e1c1bbc406f2089dddf8f6e1d9d206 (diff) |
big restructure of `mode` scripts
Diffstat (limited to '.local/share/mode/switch.d/fcitx5')
-rwxr-xr-x | .local/share/mode/switch.d/fcitx5 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.local/share/mode/switch.d/fcitx5 b/.local/share/mode/switch.d/fcitx5 new file mode 100755 index 0000000..ee99f13 --- /dev/null +++ b/.local/share/mode/switch.d/fcitx5 @@ -0,0 +1,28 @@ +#!/bin/sh +cat "$XDG_DATA_HOME/fcitx5/themes/loek/base.conf" - << EOF > "$XDG_DATA_HOME/fcitx5/themes/loek/theme.conf" +[InputPanel] +NormalColor=$fg +HighlightCandidateColor=$accent_text +HighlightColor=$color13 +HighlightBackgroundColor=$bg + +[InputPanel/Background] +Color=$bg +BorderColor=$accent + +[InputPanel/Highlight] +Color=$accent + +[Menu/Background] +Color=$bg + +[Menu] +NormalColor=$fg + +[Menu/Highlight] +Color=$accent + +[Menu/Separator] +Color=$color7 +EOF + |