Compare commits
No commits in common. "298af1063952401614d532d0fef89ec5054a742d" and "6e51b9e20e267320a233bc894b97a55e6aef70e8" have entirely different histories.
298af10639
...
6e51b9e20e
2 changed files with 13 additions and 2 deletions
|
@ -11,7 +11,6 @@ local surface = '#fffaf3'
|
||||||
local overlay = '#f2e9e1'
|
local overlay = '#f2e9e1'
|
||||||
|
|
||||||
local highlight_med = '#dfdad9'
|
local highlight_med = '#dfdad9'
|
||||||
local highlight_high = '#cecacd'
|
|
||||||
|
|
||||||
local lexers = vis.lexers
|
local lexers = vis.lexers
|
||||||
|
|
||||||
|
@ -39,7 +38,7 @@ lexers.STYLE_IDENTIFIER = 'fore:'..text
|
||||||
|
|
||||||
lexers.STYLE_LINENUMBER = 'fore:'..subtle
|
lexers.STYLE_LINENUMBER = 'fore:'..subtle
|
||||||
lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
|
lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
|
||||||
lexers.STYLE_CURSOR = 'back:'..highlight_high
|
lexers.STYLE_CURSOR = 'back:'..muted
|
||||||
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:'..subtle
|
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:'..subtle
|
||||||
lexers.STYLE_CURSOR_LINE = 'underlined'
|
lexers.STYLE_CURSOR_LINE = 'underlined'
|
||||||
lexers.STYLE_COLOR_COLUMN = 'back:'..highlight_med
|
lexers.STYLE_COLOR_COLUMN = 'back:'..highlight_med
|
||||||
|
|
12
.local/bin/themer
Executable file
12
.local/bin/themer
Executable file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -ex
|
||||||
|
|
||||||
|
if test -n "$1"; then
|
||||||
|
. ~/.config/themer/themes/"$1".sh
|
||||||
|
~/.config/themer/fuzzel.sh
|
||||||
|
~/.config/themer/lock.sh
|
||||||
|
~/.config/themer/gtk.sh
|
||||||
|
else
|
||||||
|
echo "No theme specified"
|
||||||
|
exit 1
|
||||||
|
fi
|
Loading…
Reference in a new issue