Re: MX-Fluxbox
Posted: Wed Jan 26, 2022 2:55 pm
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.
Good job!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
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
Nice script. It doesnt work for me thoughtequila wrote: Sun Jul 10, 2022 6:24 amHi, someone might be interested in adjusting the brightness using the yad script:xbacklight needs to be installed.Code: Select all
<snip>