Page 23 of 24

Re: MX-Fluxbox

Posted: Wed Jan 26, 2022 2:55 pm
by Jerry3904
I have been in your wonderful land, once in the South where everybody goes and a second time in the North (Chachapoyas), where nobody goes.

Re: MX-Fluxbox

Posted: Wed Jan 26, 2022 3:35 pm
by 3az
Hi Jerry3904, I'm glad you visited my wonderful land. I am in the north, in the coastal city of Chiclayo, 10 hours from Chachapoyas.
Chiclayo, is 1 hour from Sipan, birthplace of the Lord of Sipan.
A huge hug from these lands!!!

Re: MX-Fluxbox

Posted: Wed Jan 26, 2022 3:50 pm
by Jerry3904
Even had lunch in Chiclayo!

Re: MX-Fluxbox

Posted: Wed Jan 26, 2022 4:28 pm
by 3az
Cool!
Then you also know my city!
A new and immense hug from this warm city!

Re: MX-Fluxbox

Posted: Thu Jan 27, 2022 2:28 pm
by kobaian
3az wrote: Wed Jan 26, 2022 1:40 pm Hello friends, I hope this is the appropriate place to include this post.
I've created some themes for MX-Fluxbox, which I think look great.
I want to share it with you, I hope you like it. I made them thinking that one day, at least one of them will be considered to be included in the official realease.
I hope you like it. If you have a good comment, I will be grateful.

themes:

Simple-ArcDark --> https://www.pling.com/p/1690655
Stylish-Arc - Dark --> https://www.pling.com/p/1690652
Stylish-Adwaita - Light --> https://www.pling.com/p/1685944
Stylish-Adwaita - Dark --> https://www.pling.com/p/1685480
Simple-AdwaitaDark --> https://www.pling.com/p/1686462
Simple-AdwaitaLight --> https://www.pling.com/p/1686456

walls:

BrickWall --> https://www.pling.com/p/1690639
CrossAndFrames - Light --> https://www.pling.com/p/1685945
CrossAndFrames - Dark --> https://www.pling.com/p/1685468
Good job!
That's why I like MX-Fluxbox! It's not only a question of WM, environment etc. It is also a community of great people, that share their ideas and work. Thank you!

Re: MX-Fluxbox

Posted: Thu Jan 27, 2022 6:29 pm
by 3az
Hello kobaian,
It is a pleasure to greet!
Glad you liked them.
Enjoy them!
This work was made with that sense, that we all can use it!
thanks too!

Re: MX-Fluxbox

Posted: Sun Jul 10, 2022 6:24 am
by tequila
Hi, someone might be interested in adjusting the brightness using the yad script:

Code: Select all

#!/bin/sh
YELLOW="\033[1;33m"
ENDCOLOR="\033[0m"

icon=cs-desktop 

jas=$(xbacklight -get)

yad --image="$icon" \
    --window-icon="$icon " \
    --text="current is=$jas%" \
    --button="20%":2 \
    --button="40%":3 \
    --button="60%":4 \
    --button="80%":5 \
    --button="100%":6 \
    --button=gtk-cancel:1  \
    --on-top
ret=$?

case $ret in
2) adj=20
   ;;
3) adj=40
   ;;
4) adj=60
   ;;
5) adj=80
   ;;
6) adj=100
   ;;
*) adj=$jas
  ;;
esac

if test $jas != $adj; then
   xbacklight -set $adj 
fi

echo -e $YELLOW"set brightness!"$ENDCOLOR
exit 0
xbacklight needs to be installed.

Re: MX-Fluxbox

Posted: Sun Jul 10, 2022 6:52 am
by Jerry3904
Thanks, will give it a try!

Re: MX-Fluxbox

Posted: Sun Jul 10, 2022 8:10 am
by ceeslans
tequila wrote: Sun Jul 10, 2022 6:24 amHi, someone might be interested in adjusting the brightness using the yad script:

Code: Select all

<snip>
xbacklight needs to be installed.
Nice script. It doesnt work for me though :confused:

Saved the script as 'brightness-ctrl' and made it executable. Also installed xbacklight.
but when I run it, it doesnt draw current settings - and outs an error message "No outputs have backlight property"

and... MX' own 'Brightness-Systray' works without any problems.

Re: MX-Fluxbox

Posted: Sun Jul 10, 2022 8:19 am
by Jerry3904
I couldn't get it to work either.