Pie and yuck
This commit is contained in:
parent
74635d6ef2
commit
c6fdb6838a
3 changed files with 7 additions and 3 deletions
|
@ -91,7 +91,7 @@
|
|||
|
||||
(defpoll showBattery :interval "24h"
|
||||
; if we have at least one battery in /sys/class/power_supply, we should try and show battery levels
|
||||
"if find /sys/class/power_supply* -mindepth 1 -maxdepth 1 | rg '\/sys\/class\/power_supply\/BAT'; then echo true; else echo false; fi")
|
||||
"if find /sys/class/power_supply -mindepth 1 -maxdepth 1 | rg '\/sys\/class\/power_supply\/BAT'; then echo true; else echo false; fi")
|
||||
|
||||
(defpoll brightness :interval "10s"
|
||||
"echo $(((100 * $(brightnessctl get)) / $(brightnessctl max)))")
|
||||
|
|
|
@ -2,8 +2,9 @@
|
|||
programs.senpai = {
|
||||
enable = true;
|
||||
config = {
|
||||
address = "a";
|
||||
nickname = "a";
|
||||
address = "irc+insecure://beefcake:6667";
|
||||
nickname = "lytedev";
|
||||
password-cmd = ["pass" "soju"];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -107,6 +107,9 @@ in {
|
|||
|
||||
wayland.windowManager.hyprland = {
|
||||
settings = {
|
||||
env = [
|
||||
"EWW_BAR_MON,0"
|
||||
];
|
||||
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
||||
monitor = [
|
||||
"eDP-1,2256x1504@60,0x0,${toString scale}"
|
||||
|
|
Loading…
Reference in a new issue