Change conky configs to use $HOME/.dark file for theme selection

This commit is contained in:
Talia 2020-07-21 19:28:13 +02:00
parent fcba777d99
commit 0ff16bc4c5
3 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,5 @@
local dark = io.open(os.getenv("HOME").."/.dark")
-- vim: set filetype=lua :miv -- -- vim: set filetype=lua :miv --
conky.config = { conky.config = {
monitor = 1, monitor = 1,
@ -36,7 +38,7 @@ conky.config = {
show_graph_range = false, show_graph_range = false,
} }
if os.getenv("DARK") then if dark then
print("starting in dark mode") print("starting in dark mode")
conky.config.default_color = '#ffffff' conky.config.default_color = '#ffffff'
conky.config.color1 = "#ffffff" conky.config.color1 = "#ffffff"

View file

@ -1,3 +1,5 @@
local dark = io.open(os.getenv("HOME").."/.dark")
-- vim: set tabstop=4 noexpandtab autoindent cindent syntax=lua nowrap :miv --- -- vim: set tabstop=4 noexpandtab autoindent cindent syntax=lua nowrap :miv ---
conky.config = { conky.config = {
@ -38,7 +40,7 @@ conky.config = {
minimum_height = 0, minimum_height = 0,
}; };
if os.getenv("DARK") then if dark then
conky.config.default_color = '#FFFFFF' conky.config.default_color = '#FFFFFF'
conky.config.color1 = 'white' conky.config.color1 = 'white'
conky.config.color2 = '#FFFFFF' conky.config.color2 = '#FFFFFF'

View file

@ -1,3 +1,5 @@
local dark = io.open(os.getenv("HOME").."/.dark")
-- vim: set tabstop=4 noexpandtab autoindent cindent syntax=lua nowrap :miv --- -- vim: set tabstop=4 noexpandtab autoindent cindent syntax=lua nowrap :miv ---
conky.config = { conky.config = {
@ -44,7 +46,7 @@ conky.config = {
gap_y = 20, gap_y = 20,
}; };
if os.getenv("DARK") then if dark then
conky.config.default_color = '#FFFFFF' conky.config.default_color = '#FFFFFF'
else else
conky.config.default_color = '#525564' conky.config.default_color = '#525564'