yuck
This commit is contained in:
parent
82ce480c1b
commit
efd1be2d74
3 changed files with 8 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
source ~/.config/hypr/hyprland.conf
|
source = ~/.config/hypr/hyprland.conf
|
||||||
|
|
||||||
monitor=DP-1,3840x2160@60,0x0,1.5,transform,3
|
monitor=DP-1,3840x2160@60,0x0,1.5,transform,3
|
||||||
monitor=DP-2,3840x2160@60,5280x0,1.5,transform,3
|
monitor=DP-2,3840x2160@60,5280x0,1.5,transform,3
|
||||||
|
|
|
@ -23,11 +23,11 @@
|
||||||
; TODO: idle inhibitor?
|
; TODO: idle inhibitor?
|
||||||
; TODO: get these to align properly?
|
; TODO: get these to align properly?
|
||||||
(box :class "mic" (box :class {micMuted == "false" ? "live" : "muted"} {micMuted == "false" ? " " : " "}))
|
(box :class "mic" (box :class {micMuted == "false" ? "live" : "muted"} {micMuted == "false" ? " " : " "}))
|
||||||
{" " + volume}
|
{" " + volume + "%"}
|
||||||
{" " + round(EWW_CPU["avg"], 0) + "%"}
|
{" " + round(EWW_CPU["avg"], 0) + "%"}
|
||||||
{" " + round(EWW_RAM["used_mem_perc"], 0) + "%"}
|
{" " + round(EWW_RAM["used_mem_perc"], 0) + "%"}
|
||||||
{" " + brightness + "%"}
|
{isDesktop == "true" ? "" : " " + brightness + "%"}
|
||||||
{" " + EWW_BATTERY["BAT0"]["capacity"] + "%"}
|
{isDesktop == "true" ? "" : " " + EWW_BATTERY["BAT0"]["capacity"] + "%"}
|
||||||
))
|
))
|
||||||
|
|
||||||
(defwidget music []
|
(defwidget music []
|
||||||
|
@ -49,5 +49,8 @@
|
||||||
(defpoll time :interval "1s"
|
(defpoll time :interval "1s"
|
||||||
"date '+%a %b %d %H:%M:%S'")
|
"date '+%a %b %d %H:%M:%S'")
|
||||||
|
|
||||||
|
(defpoll isDesktop :interval "24h"
|
||||||
|
"if [ -d \"$HOME/.config/lytedev-env/host-desktop\" ]; then echo true; else echo false; fi")
|
||||||
|
|
||||||
(defpoll brightness :interval "10s"
|
(defpoll brightness :interval "10s"
|
||||||
"echo $(((100 * $(brightnessctl get)) / $(brightnessctl max)))")
|
"echo $(((100 * $(brightnessctl get)) / $(brightnessctl max)))")
|
||||||
|
|
|
@ -93,7 +93,7 @@ dwindle {
|
||||||
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
|
||||||
# master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
# master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
|
||||||
pseudotile = yes
|
pseudotile = yes
|
||||||
preserve_split = yes
|
preserve_split = 1
|
||||||
no_gaps_when_only = true
|
no_gaps_when_only = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue