Page 20 of 21

Re: MX-16 Screenshots

Posted: Wed May 16, 2018 2:45 pm
by Jerry3904
Very handsome, and witty too.

Re: MX-16 Screenshots

Posted: Sat May 19, 2018 8:35 pm
by MX<3
asqwerth wrote: Wed May 16, 2018 1:30 pm Latest screenshot from my test MX15 (Jessie) partition that I'm still using.

The Lollypop media player running is the flatpak version since Jessie's gtk+ version is too old to run Lollypop otherwise.

It works but not for themeing. No matter what gtk theme you apply, flatpak Lollypop will just show up in standard Adwaita theme....

I like that wallpaper. It's really cool.

Re: MX-16 Screenshots

Posted: Sun May 20, 2018 5:50 am
by asqwerth
Thanks. Saw it in the monthly screenshot thread at Manjaro forum and a link was given, which I now can't find. I can't even remember which folder on my hard drive I saved the wallpaper to, so I did a reverse search of my own screenshot above and got a few hits for the original pic.

https://www.tineye.com/search/99962c161 ... b585a351c/

You can download from the first search result.

Looks like it was a pic posted to wallhaven at one point.

Re: MX-16 Screenshots

Posted: Sun May 20, 2018 12:07 pm
by Artim
Playing around with MX-Clocky and Neofetch for the first time. Screenshot is in this blog post. Loving my MX!

Re: MX-16 Screenshots

Posted: Sun May 20, 2018 12:33 pm
by rich
Artim wrote: Sun May 20, 2018 12:07 pm Playing around with MX-Clocky and Neofetch for the first time
Interesting panel configuration, dock at bottom with system tray on top

Re: MX-16 Screenshots

Posted: Sat Jun 30, 2018 1:37 pm
by asqwerth
While waiting for the Uru v Por match, here's a screenshot with wallpaper by Antechdesigns and the HTC Android-esque conky from the instructions posted here:

https://forum.mxlinux.org/viewtopic.php ... 20#p444820

by @male.

Image

https://imgur.com/WDQsFff

Re: MX-16 Screenshots

Posted: Sun Jul 01, 2018 1:47 pm
by asqwerth
Have now got the bigger weather conky from @male ( https://forum.mxlinux.org/viewtopic.php ... 10#p445610 ) set up, plus I added a system-info conky below to complement it.

Bottom conky uses the new syntax, slightly modified from something off a live iso of Archmerge (now called arcolinux). Had to tweak the "number of updates" text to work with a Debian-based OS, and also adjusted the transparency/ARGB settings to work properly with Compiz.

Next step is to see if I am able to tweak and change these weather conkies from @male to display only the information I want, or maybe lay out the conky differently.

Image

https://imgur.com/LjhhB6N

Re: MX-16 Screenshots

Posted: Sun Jul 01, 2018 2:39 pm
by male
@asqwerth

splendid work! :number1:
asqwerth wrote:by @male
Male is the capital of the Maldives and its wonderful people. :happy:

I'd like to give you this script. The how-to is written at the beginning (you will understand it). It makes backgrounds ;) for your Conky's in a simple way. I got it from a good friend

draw_bg_convert.sh

Code: Select all

#!/bin/bash
#------------------------------------------------------------------------------------------------------#
#inspiration: jpdipsy help-scripting: daniel38100 idea: ragamatrix from forum ubuntu-fr
#Examples how-to
#syntaxe calling cartouche BG :
#~/bin/draw_bg_convert.sh crea_cart "BG" "715x105" "cadre" "red" "0" "blue" "5"
#crea_cart "BG" "715x102" "cadre" "#00000000" "0" "#00000060" "5" #BG without square
#crea_cart "BG" "715x105" "cadre" "silver" "0" "#00000040" "5" #BG with square
#			^name.png  ^size(x-y) ^frame   |    |	|		|		|
#									  color frame   |		|
#											|		|		|
#											thickness frame |
#													|		|
#													color background
#															|
#															corner radius
#------------------------------------------------------------------------------------------------------#													
#You can change the reptemp path by your /pathes/choices you want																												  
if [ ! -z $9 ];then
    reptemp="$9"
elif [ -z $4 ];then
    reptemp=/tmp
elif [ $4 != "cadre" ];then
    reptemp=$4
else
    reptemp=/tmp
fi

echo $reptemp > ~/test.log
case "$1" in
    crea_cart )
        nom="$reptemp/$2.png" ;export image_"$2"="$nom" ;taille="$3";cadre="$4";couleur="$5";bordure="$6";couleurfond="$7";arrondi="$8"
        if [[ $4 = "cadre" ]];then
            # rectangle 1px de moins sur la taille
            L=$(echo $taille|cut -d x -f1);L=$((L - 1))
            H=$(echo $taille|cut -d x -f2);H=$((H - 1))
            convert -size "$taille" xc:none  -fill "$couleurfond" -strokewidth "$bordure" -stroke "$couleur" -draw "roundrectangle 1,1 $L,$H $arrondi,$arrondi" "$nom"
        else
            convert  -size "$taille" xc:none "$nom"
        fi

 ;;
esac

exit 

Re: MX-16 Screenshots

Posted: Fri Jul 20, 2018 4:18 am
by k_sz
*wrong topic, sorry*

Re: MX-16 Screenshots

Posted: Fri Jul 20, 2018 6:03 am
by asqwerth
male wrote: Sun Jul 01, 2018 2:39 pm ....
I'd like to give you this script. The how-to is written at the beginning (you will understand it). It makes backgrounds ;) for your Conky's in a simple way. I got it from a good friend

draw_bg_convert.sh

Code: Select all

#!/bin/bash
#------------------------------------------------------------------------------------------------------#
#inspiration: jpdipsy help-scripting: daniel38100 idea: ragamatrix from forum ubuntu-fr
#Examples how-to
#syntaxe calling cartouche BG :
#~/bin/draw_bg_convert.sh crea_cart "BG" "715x105" "cadre" "red" "0" "blue" "5"
#crea_cart "BG" "715x102" "cadre" "#00000000" "0" "#00000060" "5" #BG without square
#crea_cart "BG" "715x105" "cadre" "silver" "0" "#00000040" "5" #BG with square
#			^name.png  ^size(x-y) ^frame   |    |	|		|		|
#									  color frame   |		|
#											|		|		|
#											thickness frame |
#													|		|
#													color background
#															|
#															corner radius
#------------------------------------------------------------------------------------------------------#													
#You can change the reptemp path by your /pathes/choices you want																												  
if [ ! -z $9 ];then
    reptemp="$9"
elif [ -z $4 ];then
    reptemp=/tmp
elif [ $4 != "cadre" ];then
    reptemp=$4
else
    reptemp=/tmp
fi

echo $reptemp > ~/test.log
case "$1" in
    crea_cart )
        nom="$reptemp/$2.png" ;export image_"$2"="$nom" ;taille="$3";cadre="$4";couleur="$5";bordure="$6";couleurfond="$7";arrondi="$8"
        if [[ $4 = "cadre" ]];then
            # rectangle 1px de moins sur la taille
            L=$(echo $taille|cut -d x -f1);L=$((L - 1))
            H=$(echo $taille|cut -d x -f2);H=$((H - 1))
            convert -size "$taille" xc:none  -fill "$couleurfond" -strokewidth "$bordure" -stroke "$couleur" -draw "roundrectangle 1,1 $L,$H $arrondi,$arrondi" "$nom"
        else
            convert  -size "$taille" xc:none "$nom"
        fi

 ;;
esac

exit 
Thanks, @male. I don't know when I'll get down to testing this script, but some preliminary questions:

1. may I assume that it is meant to be called from within a conky config file using some or all of the example commands in the commented-out section?
2. a lot of the script appears to be in French. I'll need to convert them all to English, right?