first commit

This commit is contained in:
2026-05-03 00:02:51 +02:00
parent a1be01183d
commit db038a61a9
138 changed files with 9146 additions and 0 deletions
@@ -0,0 +1,37 @@
Pokud vám po instalaci i3wm nefunguje jas monitoru, náprava je poměrně jednoduchá.
Nainstalujte si brightnessctl pomocí příkazu:
```
yay -S brightnessctl
```
Restartujte počítač a otestujte funkčnost jasu monitoru. Změna se provede tímto příkazem:
```
brightnessctl set 30
```
Pokud se vám jas snížil na 30% je vše v přádku a můžeme pokračovat nastavení ovládání jasu na klávesnici.
### Ovládání jasu pomocí klávesnice:
Ve skriptu **~/.config/i3/scripts/volume_brightness.sh** na konci změnit záznam na:
`
brightness_up)
# Increases brightness and displays the notification
brightnessctl set "10%+"
show_brightness_notif
;;
brightness_down)
# Decreases brightness and displays the notification
brightnessctl set "10%-"
show_brightness_notif
;;
`
A to je vše,teď by Vám nastavení jasu mělo jít pomocí funkčních kláves.
[Kankys](https://lukaskanka.cz/) 16.4.2024