hopefully done for a while

This commit is contained in:
steven 2025-03-24 03:31:23 -04:00
parent a1b5941299
commit 7b023d62b9
3 changed files with 38 additions and 39 deletions

View file

@ -15,7 +15,7 @@ exec swayidle timeout 300 'swaylock'
output * bg /usr/share/backgrounds/Black.jpg fill output * bg /usr/share/backgrounds/Black.jpg fill
exec waybar exec waybar
exec wl-paste --watch cliphist store exec wl-paste --watch cliphist store
exec wlsunset -l "38.25" -L "-85.75" exec wlsunset -l "38.2" -L "-85.7"
# Input # Input
input type:touchpad { input type:touchpad {

View file

@ -1,34 +1,27 @@
{ {
"margin":4, "margin":4,
"modules-left":[ "modules-left":["sway/workspaces","sway/mode"],
"sway/workspaces", "modules-center":["mpris"],
"sway/mode" "modules-right":["privacy","network#warp","network#wifi","wireplumber","backlight","battery","clock","tray"],
],
"modules-center":[
"mpris"
],
"modules-right":[
"privacy",
"network#warp",
"network#wifi",
"wireplumber",
"backlight",
"battery",
"clock",
"tray"
],
"sway/workspaces":{ "sway/workspaces":{
"all-outputs":true "format":"{name} {windows}",
"format-window-separator":" | ",
"window-format":"{name}",
"window-rewrite-default":"{name}",
"window-rewrite":{
"class<foot>":"",
"class<firefox>":"",
"class<chromium>":"",
"class<signal>":"",
"class<calibre-gui>":"Calibre",
"class<org.wireshark.Wireshark>":"Wireshark"
}
}, },
"mpris":{ "mpris":{
"interval":1, "interval":1,
"dynamic-order":["title","artist","album"], "format":"{dynamic}",
"format":"{dynamic} ({position}/{length})",
"tooltip":false "tooltip":false
}, },
"privacy":{
"modules": [{"type": "audio-in"}]
},
"network#warp":{ "network#warp":{
"interval":5, "interval":5,
"format":"warp ", "format":"warp ",
@ -38,7 +31,7 @@
}, },
"network#wifi":{ "network#wifi":{
"interval":5, "interval":5,
"format-wifi":"{essid} ({signalStrength}%) ", "format":"{essid} ({signalStrength}%) ",
"format-disconnected":"no wifi", "format-disconnected":"no wifi",
"tooltip-format":"{ipaddr}", "tooltip-format":"{ipaddr}",
"interface":"wlan0" "interface":"wlan0"
@ -67,7 +60,20 @@
"clock":{ "clock":{
"interval":1, "interval":1,
"format":"{:}", "format":"{:}",
"tooltip":false "tooltip-format":"{calendar}",
"calendar":{
"mode-mon-col":4,
"weeks-pos":"right",
"format":{
"weeks":"W{}",
"today":"<span color='olivedrab'>{}</span>"
}
},
"actions":{
"on-click":"mode",
"on-click-right":"shift_up",
"on-click-middle":"shift_down"
}
}, },
"tray":{ "tray":{
"spacing":10 "spacing":10

View file

@ -1,6 +1,4 @@
* { *{font-family:monospace;}
font: bold 14px monospace;
}
window#waybar { window#waybar {
background-color: transparent; background-color: transparent;
@ -14,15 +12,10 @@ window#waybar {
margin: 0 2px; margin: 0 2px;
} }
#workspaces button.focused { #workspaces button.focused, #battery.charging {
background-color: darkslategrey;
color: white;
}
#workspaces button.urgent, #battery.warning {
background-color: firebrick;
}
#battery.charging {
background-color: olivedrab; background-color: olivedrab;
} }
#workspaces button.urgent, #battery.warning:not(.charging) {
background-color: firebrick;
}