Man page - waybar-backlight-slider(5)
Packages contains this manual
- waybar-backlight-slider(5)
- waybar-river-layout(5)
- waybar-sway-scratchpad(5)
- waybar-pulseaudio-slider(5)
- waybar-hyprland-submap(5)
- waybar-river-mode(5)
- waybar-keyboard-state(5)
- waybar-cffi(5)
- waybar-pulseaudio(5)
- waybar-states(5)
- waybar-clock(5)
- waybar(5)
- waybar-dwl-tags(5)
- waybar-niri-window(5)
- waybar-niri-workspaces(5)
- waybar-dwl-window(5)
- waybar-sndio(5)
- waybar-niri-language(5)
- waybar-hyprland-language(5)
- waybar-wireplumber(5)
- waybar-mpris(5)
- waybar-gamemode(5)
- waybar-sway-language(5)
- waybar-hyprland-workspaces(5)
- waybar-power-profiles-daemon(5)
- waybar-battery(5)
- waybar-wlr-taskbar(5)
- waybar-tray(5)
- waybar-menu(5)
- waybar-sway-workspaces(5)
- waybar-styles(5)
- waybar-sway-mode(5)
- waybar-cpu(5)
- waybar-river-window(5)
- waybar-mpd(5)
- waybar-hyprland-window(5)
- waybar-sway-window(5)
- waybar-network(5)
- waybar-systemd-failed-units(5)
- waybar-jack(5)
- waybar-temperature(5)
- waybar-river-tags(5)
- waybar-custom(5)
- waybar-idle-inhibitor(5)
- waybar-bluetooth(5)
- waybar-privacy(5)
- waybar-backlight(5)
- waybar-inhibitor(5)
- waybar-image(5)
- waybar-upower(5)
- waybar-disk(5)
- waybar-memory(5)
apt-get install waybar
Manual
waybar-backlight-slider
NAMEDESCRIPTION
CONFIGURATION
EXAMPLES
STYLE
STYLE EXAMPLE
NAME
waybar - backlight slider module
DESCRIPTION
The backlight slider module displays and controls the current brightness of the default or preferred device.
The brightness can be controlled by dragging the slider across the bar or clicking on a specific position.
CONFIGURATION
min
:
typeof: int
default: 0
The minimum volume value the slider should display and
set.
max
:
typeof: int
default: 100
The maximum volume value the slider should display and
set.
orientation
:
typeof: string
default: horizontal
The orientation of the slider. Can be either
‘horizontal‘ or ‘vertical‘.
device
:
typeof: string
The name of the preferred device to control. If left empty,
a device will be chosen automatically.
expand :
|
typeof: bool |
||
|
default: false |
||
|
Enables this module to consume all left over space dynamically. |
EXAMPLES
"modules-right":
[
"backlight-slider",
],
"backlight/slider": {
"min": 0,
"max": 100,
"orientation": "horizontal",
"device": "intel_backlight"
}
STYLE
The slider is a component with multiple CSS Nodes, of which the following are exposed:
#backlight-slider
:
Controls the style of the box
around
the slider and
bar.
#backlight-slider
slider
:
Controls the style of the slider handle.
#backlight-slider
trough
:
Controls the style of the part of the bar that has not been
filled.
#backlight-slider
highlight
:
Controls the style of the part of the bar that has been
filled.
STYLE EXAMPLE
#backlight-slider
slider {
min-height: 0px;
min-width: 0px;
opacity: 0;
background-image: none;
border: none;
box-shadow: none;
}
#backlight-slider
trough {
min-height: 80px;
min-width: 10px;
border-radius: 5px;
background-color: black;
}
#backlight-slider
highlight {
min-width: 10px;
border-radius: 5px;
background-color: red;
}