diff options
-rw-r--r-- | foot/foot.ini | 2 | ||||
-rw-r--r-- | hypr/hyprland.conf | 3 | ||||
-rw-r--r-- | waybar/config | 16 |
3 files changed, 15 insertions, 6 deletions
diff --git a/foot/foot.ini b/foot/foot.ini index 429b0e4..11ebba6 100644 --- a/foot/foot.ini +++ b/foot/foot.ini @@ -8,7 +8,7 @@ # title=foot # locked-title=no -font=mononoki Nerd Font Mono:size=7 +font=mononoki Nerd Font Mono:size=10 # font-bold=<bold variant of regular font> # font-italic=<italic variant of regular font> # font-bold-italic=<bold+italic variant of regular font> diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index df2d591..f94f806 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -1,7 +1,7 @@ # See https://wiki.hyprland.org/Configuring/Monitors/ #{{{ Monitor config monitor = , preferred, auto, 1 -monitor = HDMI-A-1, 1920x1080@75, 0x0, 1 +monitor = HDMI-A-1, 1920x1080@60, 0x0, 1 monitor = DP-1, 1920x1080@60, 1920x0, 1 #}}} @@ -12,6 +12,7 @@ monitor = DP-1, 1920x1080@60, 1920x0, 1 # exec-once = waybar & hyprpaper & firefox exec-once = ~/.config/autostart.sh exec-once = /usr/lib/polkit-kde-authentication-agent-1 +exec-once = xdph #}}} # Source a file (multi-file configs) diff --git a/waybar/config b/waybar/config index 401bbcd..d762544 100644 --- a/waybar/config +++ b/waybar/config @@ -11,7 +11,7 @@ "modules-left":[ "wlr/workspaces", "custom/launcher", "hyprland/window"], "modules-center":[], - "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "temperature", "backlight", "battery#bat0", "battery#bat1", "network", "clock", "tray", "custom/power"], + "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "temperature#cpu", "temperature#gpu", "backlight", "network", "clock", "tray", "custom/power"], // Modules configuration @@ -70,10 +70,18 @@ "memory": { "format": "{}% " }, - "temperature": { + "temperature#cpu": { // "thermal-zone": 2, - "hwmon-path": "/sys/class/hwmon/hwmon8/temp1_input", - "critical-threshold": 100, + "hwmon-path": "/sys/class/hwmon/hwmon3/temp1_input", + "critical-threshold": 80, + // "format-critical": "{temperatureC}°C {icon}", + "format": "{temperatureC}°C", + "format-icons": ["", "", ""] + }, + "temperature#gpu": { + // "thermal-zone": 2, + "hwmon-path": "/sys/class/hwmon/hwmon1/temp2_input", + "critical-threshold": 110, // "format-critical": "{temperatureC}°C {icon}", "format": "{temperatureC}°C", "format-icons": ["", "", ""] |