From 170268869ace2f7a817d9f692b33024fc02ced17 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Fri, 1 Sep 2017 15:03:23 +0200 Subject: [PATCH] Add conky --- .conky/FuzzyClock/conkyrc | 57 +++++++++++++++++++++++++++++++++++++++ bin/startconky.sh | 3 +++ 2 files changed, 60 insertions(+) create mode 100644 .conky/FuzzyClock/conkyrc create mode 100755 bin/startconky.sh diff --git a/.conky/FuzzyClock/conkyrc b/.conky/FuzzyClock/conkyrc new file mode 100644 index 0000000..4ef122e --- /dev/null +++ b/.conky/FuzzyClock/conkyrc @@ -0,0 +1,57 @@ +conky.config = { + +------------------------------------- +-- Generic Settings +------------------------------------- +background=true, +update_interval=1, +double_buffer=true, +no_buffers=true, +imlib_cache_size=10, + +draw_shades=false, +draw_outline=false, +draw_borders=false, + + +------------------------------------- +-- Window Specifications +------------------------------------- +gap_x=-1920, +gap_y=720, + +minimum_width=1920, + +own_window=true, +own_window_type="desktop", +own_window_transparent=true, +own_window_hints="undecorated,below,sticky,skip_taskbar,skip_pager", + +own_window_argb_visual=true, +own_window_argb_value=0, + +------------------------------------- +-- Text Settings +------------------------------------- +use_xft=true, +xftalpha=1, +font="Droid Sans:size=30", +text_buffer_size=256, +override_utf8_locale=true, + + +------------------------------------- +-- Color Scheme +------------------------------------- +default_color='FFFFFF', + +} + + +--------------------------------------------------- +--------------------------------------------------- + + +conky.text = [[ +${font Poiret One:weight=Bold:size=30}${alignc}${execi 60 bash-fuzzy-clock} +]] diff --git a/bin/startconky.sh b/bin/startconky.sh new file mode 100755 index 0000000..88382f1 --- /dev/null +++ b/bin/startconky.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +(sleep 10 && conky -dc $HOME/.conky/FuzzyClock/conkyrc)