Added locker to keybindings, various bar and output tweaks

This commit is contained in:
David Thurstenson 2020-06-09 13:37:33 -05:00
parent e4fe89f501
commit 4222c4795a
4 changed files with 19 additions and 1 deletions

View File

@ -12,7 +12,7 @@ set $locker "swaylock -f -F -l -c 000000"
exec swayidle -w \ exec swayidle -w \
timeout $lock-time $locker \ timeout $lock-time $locker \
timeout $dispsleep-time $dispsleep \ # timeout $dispsleep-time $dispsleep \
resume $dispwake \ resume $dispwake \
after-resume $dispwake \ after-resume $dispwake \
before-sleep $locker \ before-sleep $locker \

View File

@ -27,6 +27,10 @@ bindsym $mod+Shift+c reload
# Exit sway (logs you out of your Wayland session) # Exit sway (logs you out of your Wayland session)
bindsym $mod+Shift+e exit bindsym $mod+Shift+e exit
# Lock Screen
# See 11-idle_lock.conf for locker definition
bindsym $mod+Mod1+l exec "$locker"
## Display brightness ## Display brightness
# Requires light(1) # Requires light(1)

View File

@ -20,6 +20,12 @@ set $o-docklg-mode "1920x1080@60Hz"
set $o-docklg-pos-x "4480" set $o-docklg-pos-x "4480"
set $o-docklg-pos-y "0" set $o-docklg-pos-y "0"
# Setup for personal ultrawide monitor
set $o-puwide-id "Unknown ASUS VP348 0x0000CA5D"
set $o-puwide-mode "3440x1440@59Hz"
set $o-puwide-pos-x "1920"
set $o-puwide-pos-y "0"
# Sane default of 1080p60 # Sane default of 1080p60
output * mode 1920x1080@60Hz output * mode 1920x1080@60Hz
@ -33,3 +39,4 @@ exec "light -N 6"
output $o-internal-id pos $o-internal-pos-x $o-internal-pos-y mode $o-internal-mode output $o-internal-id pos $o-internal-pos-x $o-internal-pos-y mode $o-internal-mode
output $o-dock4k-id pos $o-dock4k-pos-x $o-dock4k-pos-y mode $o-dock4k-mode output $o-dock4k-id pos $o-dock4k-pos-x $o-dock4k-pos-y mode $o-dock4k-mode
output $o-docklg-id pos $o-docklg-pos-x $o-docklg-pos-y mode $o-docklg-mode output $o-docklg-id pos $o-docklg-pos-x $o-docklg-pos-y mode $o-docklg-mode
output $o-puwide-id pos $o-puwide-pos-x $o-puwide-pos-y mode $o-puwide-mode

View File

@ -1,3 +1,4 @@
order += "dropboxd_status"
order += "arch_updates" order += "arch_updates"
order += "volume_status" order += "volume_status"
order += "sysdata" order += "sysdata"
@ -17,6 +18,7 @@ arch_updates {
battery_level { battery_level {
format = "🔋{percent}% ({time_remaining})" format = "🔋{percent}% ({time_remaining})"
hide_seconds = true hide_seconds = true
threshold_full = 80
} }
keyboard_locks { keyboard_locks {
@ -32,3 +34,8 @@ sysdata {
format = "[\?color=cpu CPU: {cpu_used_percent}%], [\?color=mem Mem: {mem_used_percent}%], [\?color=load L1: {load1}], [\?color=load L5: {load5}], [\?color=load L15: {load15}]" format = "[\?color=cpu CPU: {cpu_used_percent}%], [\?color=mem Mem: {mem_used_percent}%], [\?color=load L1: {load1}], [\?color=load L5: {load5}], [\?color=load L15: {load15}]"
} }
dropboxd_status {
format = "KD_DB: {status}"
status_on = ""
status_off = "DOWN"
}