MX-Fluxbox

Help for MX Fluxbox
When asking for help, use Quick System Info from MX Tools. It will be properly formatted using the following steps.
1. Click on Quick System Info in MX Tools
2. Right click in your post and paste.
Message
Author
User avatar
Jerry3904
Administrator
Posts: 23356
Joined: Wed Jul 19, 2006 6:13 am

Re: MX-Fluxbox

#221 Post 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.
Production: MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin

User avatar
3az
Posts: 19
Joined: Thu Jan 20, 2022 8:04 am

Re: MX-Fluxbox

#222 Post 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!!!

User avatar
Jerry3904
Administrator
Posts: 23356
Joined: Wed Jul 19, 2006 6:13 am

Re: MX-Fluxbox

#223 Post by Jerry3904 »

Even had lunch in Chiclayo!
Production: MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin

User avatar
3az
Posts: 19
Joined: Thu Jan 20, 2022 8:04 am

Re: MX-Fluxbox

#224 Post by 3az »

Cool!
Then you also know my city!
A new and immense hug from this warm city!

User avatar
kobaian
Posts: 369
Joined: Fri Jan 03, 2020 5:49 am

Re: MX-Fluxbox

#225 Post 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!
Last edited by kobaian on Fri Jan 28, 2022 6:33 am, edited 1 time in total.
Desktop PC: AMD Ryzen 5 5600 3.5GHz, MSI B550M PRO-VDH, 32GB RAM, Gigabyte RX 570. Laptop: MacBook Late 2008, Core2Duo 2.0GHz, 8GB RAM. Netbook: Asus EEEPC Intel Atom 1.6GHz, 2GB RAM. System: MX23 64bit/32bit Fluxbox.

User avatar
3az
Posts: 19
Joined: Thu Jan 20, 2022 8:04 am

Re: MX-Fluxbox

#226 Post 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!

tequila
Posts: 34
Joined: Thu Dec 31, 2020 6:42 am

Re: MX-Fluxbox

#227 Post 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.

User avatar
Jerry3904
Administrator
Posts: 23356
Joined: Wed Jul 19, 2006 6:13 am

Re: MX-Fluxbox

#228 Post by Jerry3904 »

Thanks, will give it a try!
Production: MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin

User avatar
ceeslans
Posts: 838
Joined: Sun Apr 14, 2019 3:48 am

Re: MX-Fluxbox

#229 Post 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.
You do not have the required permissions to view the files attached to this post.
Last edited by ceeslans on Sun Jul 10, 2022 12:46 pm, edited 2 times in total.
Sony Vaio VPCF23P (2011), Intel Core i7-2670, 6gb RAM, 240gb SSD, MX-Linux 23 based Fluxbox v/1.3.7+
Lenovo Thinkpad L560 (2016), Intel Core i5-6200, 16gb RAM, 240gb SSD, Devuan Daedalus based Fluxbox v/1.3.7+

User avatar
Jerry3904
Administrator
Posts: 23356
Joined: Wed Jul 19, 2006 6:13 am

Re: MX-Fluxbox

#230 Post by Jerry3904 »

I couldn't get it to work either.
Production: MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: Lenovo X1 Carbon with MX-23 Fluxbox
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin

Post Reply

Return to “MX Fluxbox Official Release”