1
0
Fork 0
mirror of https://github.com/swaywm/sway.git synced 2025-03-21 13:52:04 +00:00

Updated Fully functional sway desktop with GNOME integration under Debian Ubuntu (markdown)

David Rios 2019-07-01 11:13:35 -03:00
parent 6ef3ca17e5
commit d25dcd4103

@ -206,4 +206,19 @@ bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ $(printf
bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -3%
bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle
```
# Screen brightness adjustment
Install brightnessctl:
```
sudo apt install brightnessctl
```
And put these keybindings on your Sway config file:
```
bindsym XF86MonBrightnessDown exec brightnessctl set 5%-
bindsym XF86MonBrightnessUp exec brightnessctl set +5%
```