July 2015 Screenshot Thread

PackRat

Quote from: VastOne on July 20, 2015, 03:48:11 AM
First distro hopping I have done in years...

Star-Linux by our own Ozitraveller


Nice work by Ozitraveller; downloading now. I'm going to attempt some repairs on the desktop that died; get this on there if I'm successful.

VSIDO + Mate -



Mate is a bit buggy; took it off the other computer (Debian Testing) since xfce is better and already installed. Give the cutting edge Mate a spin on VSIDO instead.
I am tired of talk that comes to nothing.
-- Chief Joseph

...the sun, the darkness, the winds are all listening to what we have to say.
-- Geronimo

ozitraveller

Quote from: PackRat on July 20, 2015, 04:57:46 PM
Quote from: VastOne on July 20, 2015, 03:48:11 AM
First distro hopping I have done in years...

Star-Linux by our own Ozitraveller


Nice work by Ozitraveller; downloading now. I'm going to attempt some repairs on the desktop that died; get this on there if I'm successful.

VSIDO + Mate -



Mate is a bit buggy; took it off the other computer (Debian Testing) since xfce is better and already installed. Give the cutting edge Mate a spin on VSIDO instead.

Thank you very kindly! :)

Hoping to get some new images uploaded soon when sourceforge will let me.

I really need to find a new home for my distro, sf has become a real pain lately. :(

Snap

#17
Quote
Fuck Conky... Long live the arclance weather scripts

Don't like any weather stuff in conky. This does weather too. Good enough.

https://github.com/hakerdefo/pmwf

@Ozitraveller: Downloading. Eager to check it too.

BTW, my current desktop- Nothing special but I love it simple.

Clean:


Dirty:

PackRat

^ that's a nice script, thanks for pointing it out.

Works well with conky -

I am tired of talk that comes to nothing.
-- Chief Joseph

...the sun, the darkness, the winds are all listening to what we have to say.
-- Geronimo

hakerdefo

My weather script getting some positive feedback from PackRat and Snap!
Really satisfying!
Cheers!!!
You Can't Always Git What You Want

VastOne

VSIDO      VSIDO Change Blog    

    I dev VSIDO

PackRat

Quote from: hakerdefo on July 21, 2015, 07:34:00 PM
My weather script getting some positive feedback from PackRat and Snap!
Really satisfying!
Cheers!!!

It's a nice piece of work. Right now, I'm trying to locate an old script I used to get current conditions only and add it to the conkyrc. Unfortunalely, inxi -W in a conkyrc adds the color codes with the text.
I am tired of talk that comes to nothing.
-- Chief Joseph

...the sun, the darkness, the winds are all listening to what we have to say.
-- Geronimo

hakerdefo

Here you go PackRat, Current Conditions only script for you.


#!/bin/bash

latit=
longi=
uneet=

curl -s --connect-timeout 30 -o /tmp/curr.json "http://api.openweathermap.org/data/2.5/weather?lat=$latit&lon=$longi&units=$uneet&mode=json"

if [ ! -f /tmp/curr.json ]; then
echo ""
echo -e "Unable to connect to openweathermap.org!"
echo -e "Check your internet connection!"
echo ""

exit 1

else
place=$(cat /tmp/curr.json | jq -r '.name')
nation=$(cat /tmp/curr.json | jq -r '.sys.country')
timecurr=$(cat /tmp/curr.json | jq -r '.dt')
timecurr1=$(date -d @"$timecurr" +'%A, %r')
tempcurr=$(cat /tmp/curr.json | jq -r '.main.temp')
pressurecurr=$(cat /tmp/curr.json | jq -r '.main.pressure')
humidcurr=$(cat /tmp/curr.json | jq -r '.main.humidity')
windcurr=$(cat /tmp/curr.json | jq -r '.wind.speed')
direcurr=$(cat /tmp/curr.json | jq -r '.wind.deg')
condicurr=$(cat /tmp/curr.json | jq -r '.weather[].description')

if [ "$uneet" == imperial ]
then
windcurr1="$windcurr"
symb=°F
symb2=mph
else
windcurr1=$(perl -le 'print $ARGV[0] * 3.6' "$windcurr")
symb=°C
symb2=kph
fi

echo ""
echo -e "Location - $place, $nation:"
echo ""
echo -e "Current Weather Conditions:"
echo ""
echo -e "Temperature - $tempcurr $symb"
echo -e "Atmospheric Pressure - $pressurecurr hPa"
echo -e "Humidity - $humidcurr %"
echo -e "Wind speed - $windcurr1 $symb2"
echo -e "Wind direction - $direcurr°"
echo -e "Weather condition - $condicurr"
echo ""

rm /tmp/curr.json
fi

exit 0



It's a modification of pmwf so setup instructions remains the same,

pmwf

Show it some conky love! I know you will!
Cheers!!!
You Can't Always Git What You Want

PackRat

#23
Thanks. I have a new weather conky -



Direct Link

had to drop a day to fit my laptop screen (size 8 font just too small to deal with); will have the full output on the desktop.
I am tired of talk that comes to nothing.
-- Chief Joseph

...the sun, the darkness, the winds are all listening to what we have to say.
-- Geronimo

jedi

#24
Surreal Sea!  Nice weather script hakerdefoe!  The last few weeks, I've watched in awe as you pump out script after script for VSIDO!  Awesome work.  I'm still partial to arclance's work!  The fun of Linux!  You really can "have it your way"!!!   8)



EDIT: Fixed colors to better satisfy myself!
Forum Netiquette

"No matter how smart you are you can never convince someone stupid that they are stupid."  Anonymous

Snap

QuoteMy weather script getting some positive feedback from PackRat and Snap!
Really satisfying!
Cheers!!!

My pleasure!

QuoteHere you go PackRat, Current Conditions only script for you.

Ok, Then I will never use it...  :D  (I called it pmwf-vsido... oppps, said that loud?)

QuoteThanks. I have a new weather conky -

Looks really cool, guys. But a conly for that? I still prefer to launch it in a drop-down terminal.

PackRat

QuoteLooks really cool, guys. But a conly for that? I still prefer to launch it in a drop-down terminal.

It's has a key binding. I bring up the weather and read the forecast (same with the tao). Another key binding kills all instances of conky and restarts the system information conky. Easy peasy.

@jedi - share the wallpaper, please.
I am tired of talk that comes to nothing.
-- Chief Joseph

...the sun, the darkness, the winds are all listening to what we have to say.
-- Geronimo

jedi

Forum Netiquette

"No matter how smart you are you can never convince someone stupid that they are stupid."  Anonymous

PackRat

#28
thanks.

drive by posting - vsido, sakura, filezilla, compton:

 
I am tired of talk that comes to nothing.
-- Chief Joseph

...the sun, the darkness, the winds are all listening to what we have to say.
-- Geronimo

VastOne

Nice TheRatMan

I really like sakura... using it exclusively now, VSIDO's default compton handles all of the opacity fine

I see it as a replacement for xfce-terminal

I care not for the drop-down capabilities, is that really a deal killer on terminals?
VSIDO      VSIDO Change Blog    

    I dev VSIDO