diff options
| -rwxr-xr-x | autostart.sh | 1 | ||||
| -rw-r--r-- | hypr/hyprland.conf | 21 | ||||
| -rw-r--r-- | kitty/kitty.conf | 2 | ||||
| -rw-r--r-- | waybar/config | 22 | 
4 files changed, 22 insertions, 24 deletions
| diff --git a/autostart.sh b/autostart.sh index 42eb092..7124a5e 100755 --- a/autostart.sh +++ b/autostart.sh @@ -18,6 +18,7 @@ killandrun () {  }  if [ -n "${WAYLAND_DISPLAY}${DISPLAY}" ]; then +  dinit &    notify-sound.sh off &    runifnot swayidle    killandrun hyprpaper diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 52d4254..bd3edab 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -2,8 +2,6 @@  #{{{ Monitor config  monitor = eDP-1, 1920x1080@60, 0x0, 1  monitor = , preferred, auto, 1 -monitor = HDMI-A-1, 1920x1080@60, 0x0, 1 -monitor = DP-1, 1920x1080@60, 1920x0, 1  #}}}  # See https://wiki.hyprland.org/Configuring/Keywords/ for more @@ -11,6 +9,7 @@ monitor = DP-1, 1920x1080@60, 1920x0, 1  #{{{ Autostart  # Execute your favorite apps at launch  # exec-once = waybar & hyprpaper & firefox +exec-once = dinit  exec-once = xdph  exec-once = hyprpm reload -n  exec-once = hyprpaper @@ -28,10 +27,10 @@ exec-once = mpd  #{{{ env  # Environment variables set at launch -env = HYPRCURSOR_THEME,BreezeHypr -env = HYPRCURSOR_SIZE,32 -env = XCURSOR_THEME,BreezeX-Black -env = XCURSOR_SIZE,32 +env = HYPRCURSOR_THEME, BreezeHypr +env = HYPRCURSOR_SIZE, 24 +env = XCURSOR_THEME, BreezeX-Black +env = XCURSOR_SIZE, 24  #}}}  # Source a file (multi-file configs) @@ -94,8 +93,8 @@ misc {      enable_swallow = true      swallow_regex = ^(kitty)$      swallow_exception_regex = ^(.*)(ueberzug)$ -    vfr = true -    vrr = 1 +    vfr = false +    vrr = 0  }  #}}} @@ -454,9 +453,7 @@ bind = , XF86AudioNext, exec, playerctl next  bind = , XF86AudioMute, exec, volsv -t  #bindl = , XF86AudioMicMute, exec, volsv -m  bind = , XF86AudioMicMute, exec, volsv -m -bindel = , XF86MonBrightnessUp, exec, bl -i -bindel = , XF86MonBrightnessDown, exec, bl -d -bindl = $mainMod, XF86MonBrightnessUp, exec, bl -I 1 -bindl = $mainMod, XF86MonBrightnessDown, exec, bl -D 1 +bindel = , XF86MonBrightnessUp, exec, hypr-brightness + +bindel = , XF86MonBrightnessDown, exec, hypr-brightness -  bind = , Print, exec, scrshot  #}}} diff --git a/kitty/kitty.conf b/kitty/kitty.conf index ceeaf72..08651d5 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -24,7 +24,7 @@ bold_italic_font auto  #:     italic_font      Operator Mono Book Italic  #:     bold_italic_font Operator Mono Medium Italic -font_size 11.0 +font_size 12.0  #: Font size (in pts) diff --git a/waybar/config b/waybar/config index ec04dec..d8506d2 100644 --- a/waybar/config +++ b/waybar/config @@ -11,7 +11,7 @@      "modules-left":[ "hyprland/workspaces", "custom/launcher", "hyprland/window"],      "modules-center":[], -    "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "temperature#cpu", "temperature#gpu", "backlight",  "network", "clock", "tray", "custom/power"], +    "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "battery", "temperature#0", "temperature#1", "backlight",  "network", "clock", "tray", "custom/power"],      // Modules configuration @@ -40,8 +40,8 @@          "18": "9",        },        "persistent-workspaces": { -        "DP-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], -        "HDMI-A-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], +        "eDP-1": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], +        "HDMI-A-1": [ 10, 11, 12, 13, 14, 15, 16, 17, 18 ],        },        "on-scroll-up": "hyprctl dispatch split-workspace e+1",        "on-scroll-down": "hyprctl dispatch split-workspace e-1", @@ -104,18 +104,18 @@          "format": "{capacity}%",          "max-length": 25      }, -    "temperature#cpu": { -        // "thermal-zone": 2, -        "hwmon-path": "/sys/class/hwmon/hwmon3/temp1_input", -        "critical-threshold": 80, +    "temperature#0": { +        "thermal-zone": 0, +        // "hwmon-path": "cat /sys/class/hwmon/hwmon5/temp1_input", +        "critical-threshold": 110,          // "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, +    "temperature#1": { +        "thermal-zone": 1, +        // "hwmon-path": "/sys/class/hwmon/hwmon4/temp1_input", +        "critical-threshold": 126,          // "format-critical": "{temperatureC}°C {icon}",          "format": "{temperatureC}°C",          "format-icons": ["", "", ""] | 
