commit 737310167b3fe9cf47d8f512bbc7f256f1da272b
parent 451f8f181cda9366c2d3358bcd2b280db752c0e2
Author: Matthew Carlson <matt@mcarlson.xyz>
Date: Mon, 2 Aug 2021 12:28:20 -0400
single quotes
Diffstat:
M | zathura-pywal | | | 58 | +++++++++++++++++++++++++++++----------------------------- |
1 file changed, 29 insertions(+), 29 deletions(-)
diff --git a/zathura-pywal b/zathura-pywal
@@ -63,44 +63,44 @@ zathura_pywal() {
printf '%s' "### zathura-pywal ###
# Allow recolor
-set recolor \"true\"
+set recolor 'true'
# Don't allow original hue when recoloring
-set recolor-keephue \"false\"
+set recolor-keephue 'false'
# Don't keep original image colors while recoloring
-set recolor-reverse-video \"false\"
+set recolor-reverse-video 'false'
# Command line completion entries
-set completion-fg \"${color7}\"
-set completion-bg \"${color0}\"
+set completion-fg '${color7}'
+set completion-bg '${color0}'
# Command line completion group elements
-set completion-group-fg \"${color2}\"
-set completion-group-bg \"${color0}\"
+set completion-group-fg '${color2}'
+set completion-group-bg '${color0}'
# Current command line completion element
-set completion-highlight-fg \"${color0}\"
-set completion-highlight-bg \"${color7}\"
+set completion-highlight-fg '${color0}'
+set completion-highlight-bg '${color7}'
# Default foreground/background color
set default-bg rgba(${r},${g},${b},${alpha})
# Input bar
-set inputbar-fg \"${color7}\"
-set inputbar-bg \"${color0}\"
+set inputbar-fg '${color7}'
+set inputbar-bg '${color0}'
# Notification
-set notification-fg \"${color7}\"
-set notification-bg \"${color0}\"
+set notification-fg '${color7}'
+set notification-bg '${color0}'
# Error notification
-set notification-error-fg \"${color7}\"
-set notification-error-bg \"${color1}\"
+set notification-error-fg '${color7}'
+set notification-error-bg '${color1}'
# Warning notification
-set notification-warning-fg \"${color7}\"
-set notification-warning-bg \"${color1}\"
+set notification-warning-fg '${color7}'
+set notification-warning-bg '${color1}'
# Tab - TODO
# set tabbar-fg
@@ -111,28 +111,28 @@ set notification-warning-bg \"${color1}\"
# set tabbar-focus-bg
# Status bar
-set statusbar-fg \"${color7}\"
-set statusbar-bg \"${color0}\"
+set statusbar-fg '${color7}'
+set statusbar-bg '${color0}'
# Highlighting parts of the document (e.g. show search results)
-set highlight-color \"${color2}\"
-set highlight-active-color \"${color2}\"
+set highlight-color '${color2}'
+set highlight-active-color '${color2}'
# Represent light/dark colors in recoloring mode
set recolor-lightcolor rgba(0,0,0,0)
-set recolor-darkcolor \"${color7}\"
+set recolor-darkcolor '${color7}'
-# \"Loading...\" text
-set render-loading-fg \"${color7}\"
-set render-loading-bg \"${color0}\"
+# 'Loading...' text
+set render-loading-fg '${color7}'
+set render-loading-bg '${color0}'
# Index mode
-set index-fg \"${color7}\"
-set index-bg \"${color0}\"
+set index-fg '${color7}'
+set index-bg '${color0}'
# Selected element in index mode
-set index-active-fg \"${color0}\"
-set index-active-bg \"${color7}\"" >> "${ZATHURARC}"
+set index-active-fg '${color0}'
+set index-active-bg '${color7}'" >> "${ZATHURARC}"
printf "All done.\nPress 'Ctrl' + 'R' (or whatever 'recolor' is mapped to) with zathura open to toggle the color scheme.\n"
}