You are not logged in.

#41 2017-08-10 12:50:52

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,698

Re: August 2017 Screenshots

Today I was keen to watch these zodiac clocks...   ]:D

2017-08-10-14-40-51_scrot.th.png

Offline

#42 2017-08-10 14:02:00

Sun For Miles
Member
Registered: 2017-04-12
Posts: 263

Re: August 2017 Screenshots

@ututo

I've split this weather script into temeprature read and system notification action on left-click. Maybe you will like the idea so here it is:

executor in .tint2rc

# Executor 1 - Weather
execp = new
execp_command = ~/Scripts/tint2_weather.sh
execp_interval = 300
execp_has_icon = 0
execp_cache_icon = 0
execp_continuous = 0
execp_markup = 0
execp_tooltip = Current temperature in Belgrade
execp_lclick_command = ~/Scripts/weather_cond.sh
execp_rclick_command = x-www-browser http://wttr.in/belgrade
execp_mclick_command = 
execp_uwheel_command =
execp_dwheel_command =
execp_font = Ostrich Sans Bold 20
execp_font_color = #FFFFFF 60
execp_padding = 0 0
execp_background_id = 0
execp_centered = 1
execp_icon_w = 0
execp_icon_h = 0

weather_cond.sh

#!/bin/bash

# weather_cond.sh
# Taken from
# https://petermolnar.net/hacking-tint2-panel-weather-cpu-temperature-and-volume-executors/
# and edited for convenience

geo="$(wget -O- -q http://geoip.ubuntu.com/lookup)"
if grep -qi '11.11.11.11' <<< $geo; then
    lat="11.1111"
    lon="11.1111"
else
    lat="$(sed -r 's/.*<Latitude>(.*?)<\/Latitude>.*/\1/g' <<< $geo)"
    lon="$(sed -r 's/.*<Longitude>(.*?)<\/Longitude>.*/\1/g' <<< $geo)"
fi

weather="$(wget -q -O- http://api.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=$lat,$lon)"

kw="weather"
condition="$(sed -r "s/.*<$kw>(.*?)<\/$kw>.*/\1/g" <<< $weather)"

popup_notification="Current conditions: ${condition}"

notify-send "$popup_notification"

tint2_weather.sh

#!/bin/bash

# Taken from
# https://petermolnar.net/hacking-tint2-panel-weather-cpu-temperature-and-volume-executors/
# and edited for convenience

geo="$(wget -O- -q http://geoip.ubuntu.com/lookup)"
if grep -qi '11.11.11.11' <<< $geo; then
    lat="11.1111"
    lon="11.1111"
else
    lat="$(sed -r 's/.*<Latitude>(.*?)<\/Latitude>.*/\1/g' <<< $geo)"
    lon="$(sed -r 's/.*<Longitude>(.*?)<\/Longitude>.*/\1/g' <<< $geo)"
fi

weather="$(wget -q -O- http://api.wunderground.com/auto/wui/geo/WXCurrentObXML/index.xml?query=$lat,$lon)"

kw="temp_c"
temperature="$(sed -r "s/.*<$kw>(.*?)<\/$kw>.*/\1/g" <<< $weather)"

display_output="${temperature}°C"

echo "${display_output:0:12}"

This is how it looks:

lNSXlgvm.png

You just edit IP and geo data in both scripts to match your locale.

Last edited by Sun For Miles (2017-08-10 14:09:21)


Señor Chang, why do you teach Spanish?

Offline

#43 2017-08-10 17:40:12

Addy
Member
From: Most populated island on Earth
Registered: 2017-07-14
Posts: 89
Website

Re: August 2017 Screenshots

Heavily inspired by @NixiePro
hexagon.th.png


If it ain't broke, then tweak it until it breaks.

Offline

#44 2017-08-10 19:10:07

yunn
Member
From: Madrid
Registered: 2015-09-29
Posts: 67
Website

Re: August 2017 Screenshots

Addy wrote:

@Addy, beatiful and great job !! smile

Offline

#45 2017-08-10 20:18:42

ohnonot
...again
Registered: 2015-09-29
Posts: 5,592

Re: August 2017 Screenshots

Addy wrote:

oh, the termcolor script, prettyplease?

Offline

#46 2017-08-10 21:16:22

ututo
Member
Registered: 2015-09-29
Posts: 326

Re: August 2017 Screenshots

@yunn thanks!

@Addy great screenshot! I wonder who this @nixiepro is. It seems he has some styyyyle

@Sun For Miles. That looks really nice! I'll have to give it a try. This is how it looks in mine:

Screenshot-08102017-060523PM.th.png


BunsenLabs on deviantArt
Don't touch my git!

Offline

#47 2017-08-11 02:35:25

Addy
Member
From: Most populated island on Earth
Registered: 2017-07-14
Posts: 89
Website

Re: August 2017 Screenshots

yunn wrote:

@Addy, beatiful and great job !! smile

Thank You very much @yunn!!

ohnonot wrote:

oh, the termcolor script, prettyplease?

Of course, please check my github here

ututo wrote:

@Addy great screenshot! I wonder who this @nixiepro is. It seems he has some styyyyle

Thank You very much! Your screenshot is great as well.
Me too, He must be a legend. It needs ten years more for me to pass him.

Last edited by Addy (2017-08-11 02:39:08)


If it ain't broke, then tweak it until it breaks.

Offline

#48 2017-08-11 02:42:14

Addy
Member
From: Most populated island on Earth
Registered: 2017-07-14
Posts: 89
Website

Re: August 2017 Screenshots

Just inspected your profile @ututo, now I know something big_smile


If it ain't broke, then tweak it until it breaks.

Offline

#49 2017-08-11 05:39:53

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,871

Re: August 2017 Screenshots

ututo wrote:

@yunn thanks!

@Addy great screenshot! I wonder who this @nixiepro is. It seems he has some styyyyle

@Sun For Miles. That looks really nice! I'll have to give it a try. This is how it looks in mine:

https://cdn.scrot.moe/images/2017/08/10/Screenshot-08102017-060523PM.th.png

That is super nice.


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

#50 2017-08-11 06:38:15

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,871

Re: August 2017 Screenshots

ArchLabs35.md.png


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

#51 2017-08-11 17:40:48

ohnonot
...again
Registered: 2015-09-29
Posts: 5,592

Re: August 2017 Screenshots

Addy wrote:

Of course, please check my github here

thanks!
it seems I'm using a weird colorscheme:
whatsapp.png

Offline

#52 2017-08-11 19:49:59

mrneilypops
The BL Scrot.Moe Guy
From: luxembourg
Registered: 2015-09-30
Posts: 577
Website

Re: August 2017 Screenshots

working on a new version of dwmX called dwmXS - based on 'S'tretch of course  cool

playing with dwm Alt+b - hide that bar...

2017-08-11-214022_1920x1080_scrot.th.png

and back again...

2017-08-11-214337_1920x1080_scrot.th.png

Gruvbox style

Offline

#53 2017-08-11 21:12:41

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,028

Re: August 2017 Screenshots

Not sure about dwm but I can smell the incense from here.
and tineye found it for me ... has a scratch-n-sniff corner.  lol lol lol

Must try dwm someday.  wink


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#54 2017-08-11 22:02:33

milos
New Member
Registered: 2017-08-11
Posts: 1

Re: August 2017 Screenshots

Can you tell me the name of movie/series?

obscurant wrote:

Just installed Bunsenlabs and really enjoying it.

shot1.th.png

Offline

#55 2017-08-12 00:08:29

Addy
Member
From: Most populated island on Earth
Registered: 2017-07-14
Posts: 89
Website

Re: August 2017 Screenshots

Very nice Matt. I want to go there sad

ohnonot wrote:

thanks!
it seems I'm using a weird colorscheme:
https://cdn.scrot.moe/images/2017/08/11/whatsapp.png

You are very welcome smile
Weird, but I have to admit your top layer colors are beautiful

Last edited by Addy (2017-08-12 05:08:30)


If it ain't broke, then tweak it until it breaks.

Offline

#56 2017-08-12 00:32:02

Döbbie03
Resident Metalhead
From: New Zealand
Registered: 2015-09-29
Posts: 3,871

Re: August 2017 Screenshots

Addy wrote:

Very nice Matt. I want to go there sad

ohnonot wrote:

thanks!
it seems I'm using a weird colorscheme:
https://cdn.scrot.moe/images/2017/08/11/whatsapp.png

You are very welcome smile
Weird, but I have to admit your top layer colors are beautiful


Thanks Addy.


"All we are is dust in the wind, dude"
                                       - Theodore "Ted" Logan
"Led Zeppelin didn't write tunes that everybody liked, they left that to the Bee Gees."
                                       - Wayne Campbell

Offline

#57 2017-08-12 04:37:41

Addy
Member
From: Most populated island on Earth
Registered: 2017-07-14
Posts: 89
Website

Re: August 2017 Screenshots

Ground Control to Major Tom

groundcontroltomajortom.th.png
Wallpaper

The Moon is actually an analog clock. But still have no idea how to design the clockhands.
Maybe I should replace Moon with Mars, and using Phobos & Deimos as clockhands.

Last edited by Addy (2017-08-12 04:40:20)


If it ain't broke, then tweak it until it breaks.

Offline

#58 2017-08-12 06:43:42

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: August 2017 Screenshots

Addy wrote:

.... But still have no idea how to design the clockhands.
....

Eagle and Columbia, from the first landing in 1969?


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

#59 2017-08-12 10:01:56

ohnonot
...again
Registered: 2015-09-29
Posts: 5,592

Re: August 2017 Screenshots

Addy wrote:

But still have no idea how to design the clockhands.

just white dots, indicating floating astronauts?

Offline

#60 2017-08-12 11:10:39

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: August 2017 Screenshots

Awesome desktops this month, my vanilla scrots make me ashamed to post (doesn't seem to stop me though).

Killing two birds with one boot:

Screenshotfrom2017-08-1208-51-44.th.png

pacman won but Alpine's apk would have shown it a clean pair of heels...

Offline

Board footer

Powered by FluxBB