You are not logged in.
http://s16.postimg.org/h5s0ood41/Screenshot_04102016_05_42_40_PM.jpg
working on a full screen conky.. you know how I do it
...dang.
Lenovo IdeaPad Yoga 13 | BunsenLabs Hydrogen (x64)
Intel Core i7-3537U | Intel HD4000 | 8GB DDR3 | 256GB SSD
Offline
VERY NICE!
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
@falldown - love what you've done with my graphic, very clever
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
Thank you Gentlemen!
@Damo The graphic is the inspiration for the theme.
Offline
{sigh} 8) WOW!
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
WOW! Wonderfully beautiful falldown, Best conky graphic i saw in long time.
Congrat!
Nili
Tumbleweed | KDE Plasma
Offline
@ Nili
Yup, that what happens when you get a Virtuoso Gimpster that can write Conky's in his sleep
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
^So true I also have decorated desktop+conky many times with GIMP/Photoshop.
Tumbleweed | KDE Plasma
Offline
Yes, I know. I have been watching your 'art' via themes, screenshots and conkys for a few years now.
falldown takes his time - I think it is the perfectionist in him, and well worth the wait.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Thank you!
Yes I do S11
I keep all my junk.. just not very organized..
I have a few unfinished projects that I would really like to finish at some point.
Offline
@falldown
Can we have it in the BL dA group Conky gallery? Pleeeeze
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
Thank you!
Yes I do S11
I keep all my junk.. just not very organized..![]()
I have a few unfinished projects that I would really like to finish at some point.
Junk! I don't think so. I have a 'few' of your gems here.
I don't collect junk.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Damo absolutely.. although it is still a WIP.
S11 one mans junk is another mans treasure
Offline
Oh don't I know it.
Debian 12 Beardog, SoxDog and still a Conky 1.9er
Offline
Offline
^ I can't wait to fly that when you have finished building it
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
Hello,
I've been a #! user since 2013, and made the jump to Bunsenlabs when the end announcement was made. I have a conky config that's slowly evolved through the years with bits and pieces of appropriated code. It isn't super special, but it has worked for me.
I just realized that the commented-out sections are still from #!
Mod Note: Oversized image replaced with thumbnail link, please limit images to ~250x250px
-HoaS
Offline
I've been playing with Conky today and incorporated a Diary and ToDo list:
I adapted the code for the diary from this conky_todo.sh by Magyar on the Arch Forum . Feeling quite pleased with myself as I haven't got a clue what I'm doing. Anyway, this is what I came up with:
#!/bin/bash
IFS=$'\n'
for i in `seq 0 5`
do
if [ $i -eq 0 ]
then
printf "${color}$(date "+%A")"
else
printf "${color}$(date -d "$i day" "+%A")"
fi
TODO="$(grep `date -d "$i day" +%d/%m/%y` ~/Documents/diary.txt | sort -k2,1n)"
for WORD in $TODO
do
DATE="$(echo $WORD | awk '{print $1}')"
TIME="$(echo $WORD | awk '{print $2}')"
TASK="$(echo $WORD | cut -c21-57)"
printf "\n$TASK"
done
printf "\n\n"
done
Edit: I did come across a problem - when I replaced the short diary entries shown in the Conky with real, longer entries they got cut off after the first half a dozen. I had to increase text_buffer_size in the Conkyrc and that seems to have fixed it.
Last edited by Hipparkhia (2016-04-20 22:18:08)
Offline