Add tint2rc + script for basing border colours on pywal

This commit is contained in:
trémeur 2019-12-07 16:09:00 +00:00
parent f9b47e21a0
commit c2497f8152
4 changed files with 224 additions and 13 deletions

78
dots/conkytemplate Normal file
View file

@ -0,0 +1,78 @@
-- vim: ts=4 sw=4 noet ai cindent syntax=lua
--[[
Conky, a system monitor, based on torsmo
Any original torsmo code is licensed under the BSD license
All code written since the fork of torsmo is licensed under the GPL
Please see COPYING for details
Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
Copyright (c) 2005-2012 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
All rights reserved.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
]]
conky.config = {
alignment = 'top_left',
background = false,
border_width = 7,
cpu_avg_samples = 2,
default_color = 'COLOURTEMPLATE',
draw_borders = true,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
double_buffer = true,
use_xft = true,
font = 'Inconsolata:size=9',
gap_x = 25,
gap_y = 40,
minimum_width = 5,
net_avg_samples = 2,
no_buffers = true,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
own_window = true,
own_window_class = 'Conky',
own_window_type = 'desktop',
own_window_transparent = false,
own_window_argb_visual = false,
own_window_colour = 'white',
stippled_borders = 0,
update_interval = 1.0,
uppercase = false,
use_spacer = 'none',
show_graph_scale = false,
show_graph_range = false,
use_xft = true,
color1 = 'black',
}
conky.text = [[
${color1}Sync
${exec command insync get_sync_progress}
$hr
Calendar
${exec command ~/.linux/scripts/today.sh}
$hr
To do
${exec command ~/go/bin/todoist sync && ~/go/bin/todoist list --filter '(overdue | today)' | sed 's/^..............//' | sed 's/\#Inbox\ //g' | sed 's/\ ..\:..\ //g' | sort | sed 's/^.\{14\}//'}
$hr
Music
${exec command ~/.linux/scripts/nowplaying.sh}
${execbar command ~/.linux/scripts/cmus-conky-timebar.sh}
]]