For screen brightness solution by chandrakant bharti
1. Terminal Solution: Fix Brightness via GRUB & xrandr ๐ Step 1: Edit GRUB configuration sudo nano /etc/default/grub ๐ Step 2: Find this line: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" Change it to: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor" ๐ Step 3: Update GRUB and reboot sudo update-grub sudo reboot --- ✅ 2. Software-Based GUI Tool (DEB-based) ๐ฅ️ Option A: Brightness Controller (GUI Tool) This is a simple GUI-based software. If the system backlight doesn't work, it adjusts brightness using xrandr. ๐ง Install it via terminal: sudo add-apt-repository ppa:apandada1/brightness-controller sudo apt update sudo apt install brightness-controller ๐ To run: Go to Applications → Brightness Controller This tool also supports multiple monitors. --- ✅ 3. Temporary Brightness Control using xrandr (Terminal method) ๐ Step 1: Check your display name xrandr | grep " connected" Example output: eDP-1 connected ... ๐ Step 2: Adjust brigh...