check_alt "MX" "Continuum" "Debian" "stretch"check_alt "mx-linux" "Continuum" "Debian" "stretch"setup_10.x and make it ejecutable: chmod +x setup_10.x, then:sudo ./setup_10.xsudo apt install -y nodejsnpm install -g gatsby-cliFind out the connected display:
$ xrandr -q | grep ' connected' | head -n 1 | cut -d ' ' -f1In my case, the connected display is HDMI-3. You can now set the brightness with this command (values between 0.0 and 1.0):
$ xrandr --output HDMI-3 --brightness 0.8Xrandr allow us to change monitor brightness between the ranges of 0.0 and 0.99 values, being 0.0 total darkness and 0.99 total brightness. We can make a command to set the brightness.
Note: For this work on Fedora, you must disable Wayland and enable Xorg as default GNOME session. Please read intructions here.
$ mkdir bin$ vi bin/mycommand#!/bin/bashdisplay=$(xrandr -q | grep ' connected' | head -n 1 | cut -d ' ' -f1)xrandr --output $display --brightness 0.$1$ chmod +x bin/mycommand~/.bashrc and add the following line:export set PATH=$PATH:~/binUsage example
Set brightness to 0.75:
$ mycommand 75In order for Geany to load the VTE, we must first create a symbolic link:
# ln -s /usr/lib/libvte.so.9 /usr/lib/libvte.soNote: If Ge
More info at https://www.geany.org/manual/current/index.html#virtual-terminal-emulator-widget-vte