Add a luminosity script (polybar plugin not working)
parent
7ddc7cac46
commit
0bc1e6afda
|
@ -14,9 +14,13 @@ workspace 6 output HDMI-0
|
|||
bindsym XF86AudioRaiseVolume exec --no-startup-id amixer -D hw:PCH -M sset Master 5%+
|
||||
bindsym XF86AudioLowerVolume exec --no-startup-id aimxer -D hw:PCH -M sset Master 5%-
|
||||
bindsym XF86AudioMute exec --no-startup-id amixer -D hw:PCH -M sset 'Master' toggle
|
||||
bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
|
||||
bindsym XF86AudioPrev exec --no-startup-ip playerctl prev
|
||||
bindsym XF86AudioNext exec --no-startup-id playerctl next
|
||||
|
||||
# Luminosity on laptop (not xorg-xbacklight but the compatible and working acpilight)
|
||||
bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 10 -steps 200
|
||||
bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 10 -steps 200
|
||||
bindsym XF86KbdBrightnessDown exec --no-startup-id xbacklight -ctrl asus::kbd_backlight -dec 30
|
||||
bindsym XF86KbdBrightnessUp exec --no-startup-id xbacklight -ctrl asus::kbd_backlight -inc 30
|
||||
|
||||
|
||||
# set DPI along with .Xresources
|
||||
exec xrandr --dpi 160
|
||||
|
|
|
@ -4,7 +4,12 @@ height = 54
|
|||
wireless_interface = wlp2s0
|
||||
top_left = powermenu system-uptime-pretty battery
|
||||
top_center = xwindow
|
||||
top_right = system-usb-udev pulseaudio date
|
||||
top_right = system-usb-udev luminosity pulseaudio date
|
||||
|
||||
[module/luminosity]
|
||||
type = custom/script
|
||||
exec = ~/.config/polybar/scripts/luminosity.sh
|
||||
interval = 1
|
||||
|
||||
[module/pulseaudio]
|
||||
type = internal/pulseaudio
|
||||
|
|
|
@ -81,7 +81,7 @@ label-maxlen=100
|
|||
type = internal/network
|
||||
interface = ${variables.wireless_interface}
|
||||
interval = 1
|
||||
label-connected = %{F#ddd}%essid% %local_ip% %{F#77dd77}%{F-}%downspeed% %{F#dd7777}%{F-}%upspeed%
|
||||
label-connected = %{F#ddd}%essid% %local_ip% %{F#77dd77}%{F-} %downspeed% %{F#dd7777}%{F-} %upspeed%
|
||||
label-disconnected = Ethernet disconnected
|
||||
label-disconnected-foreground = #66
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
lum=$(xbacklight -get)
|
||||
echo "%{F#77dd77}☀️%{F#ddd} ${lum}%"
|
Loading…
Reference in New Issue