updated sway binary, gonna merge soon

This commit is contained in:
iris committed 2023-06-16 10:11:41 -04:00
1 parent 1eca57b40e
commit 0d5900b551
4 files changed
+16 -7

No files matched your search

+2 -2
View File
@@ -18,7 +18,7 @@
:class "metric mod"
:space-evenly false
(box :class {class ?: ""} {icon})
(revealer :transition "slideleft"
(revealer :transition "slideright"
:reveal reveal
:duration "300ms"
(scale :min 0
@@ -33,7 +33,7 @@
:class "metric mod"
:space-evenly false
(box :class {class ?: ""} {icon})
(revealer :transition "slideleft"
(revealer :transition "slideright"
:reveal net_reveal
:duration "300ms"
(label :text {value}
+9 -2
View File
@@ -18,8 +18,15 @@
:icon ""
:class "red"))
(defpoll bat_stat :interval "30s" "cat /")
(defwidget bat []
(box
(circle :value {EWW_BATTERY.BAT0.capacity}
:icon "⏻"
:class "green"))
;; :icon "⏻"
:icon {
EWW_BATTERY.BAT0.status == "Charging" ? "󱐋"
: EWW_BATTERY.BAT0.status == "Not charging" ? ""
: "󰁹"
}
:class "green")))
+2 -2
View File
@@ -1,7 +1,7 @@
;; (deflisten wslist0
;; "scripts/getwss eDP-1")
;; "scripts/getwsss eDP-1")
;; (deflisten wslist1
;; "scripts/getwss DP-")
;; "scripts/getwsss DP-")
(deflisten wslist0
"scripts/getwss 0")
(deflisten wslist1
+3 -1
View File
@@ -38,6 +38,7 @@ def handle(state: State, event: str, data: str = None):
wid = int(data)
if state.prev_active in wss.keys():
wss[state.prev_active]['focused'] = False
if wid in wss.keys():
wss[wid]['focused'] = True
state.prev_active = wid
return output(state)
@@ -46,6 +47,7 @@ def handle(state: State, event: str, data: str = None):
state.wss = dict(sorted(wss.items()))
return output(state)
if event == "destroyworkspace":
if int(data) in wss:
del wss[int(data)]
return output(state)
@@ -91,7 +93,7 @@ def get_state(mid: str):
focused = m['focused']
break
if mname is None:
print("Error: monitor not found")
print("Error: monitor not found", file=sys.stderr)
sys.exit(1)
wss = dict()