From 825a12c0b6e56ea3311aa91b98980be7d56ce6d9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 21 Feb 2026 10:41:09 +0100 Subject: [PATCH 1/4] Suggest a few more possible tweaks --- config/hypr/looknfeel.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config/hypr/looknfeel.conf b/config/hypr/looknfeel.conf index 62e26344..8d869813 100644 --- a/config/hypr/looknfeel.conf +++ b/config/hypr/looknfeel.conf @@ -15,6 +15,16 @@ general { decoration { # Use round window corners # rounding = 8 + + # Dim unfocused windows (0.0 = no dim, 1.0 = fully dimmed) + # dim_inactive = true + # dim_strength = 0.15 +} + +# https://wiki.hyprland.org/Configuring/Variables/#animations +animations { + # Disable all animations + # enabled = no } # https://wiki.hypr.land/Configuring/Dwindle-Layout/ From a2f99b771ec9a40583ede93b76e31727a7b22d97 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 21 Feb 2026 10:44:02 +0100 Subject: [PATCH 2/4] A few more examples --- config/hypr/monitors.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/hypr/monitors.conf b/config/hypr/monitors.conf index 875ad265..557c7ff3 100644 --- a/config/hypr/monitors.conf +++ b/config/hypr/monitors.conf @@ -11,9 +11,13 @@ monitor=,preferred,auto,auto # monitor=,preferred,auto,1.6 # Straight 1x setup for low-resolution displays like 1080p or 1440p +# Or for ultrawide monitors like 34" 3440x1440 or 49" 5120x1440 # env = GDK_SCALE,1 # monitor=,preferred,auto,1 +# Portrait/rotated secondary monitor (transform: 1 = 90°, 3 = 270°) +# monitor = DP-2, preferred, auto, 1, transform, 1 + # Example for Framework 13 w/ 6K XDR Apple display # monitor = DP-5, 6016x3384@60, auto, 2 # monitor = eDP-1, 2880x1920@120, auto, 2 From 8dfd36fb2af49ad77779b9a737e05c9c49175757 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 21 Feb 2026 10:44:25 +0100 Subject: [PATCH 3/4] Excess space --- config/omarchy/extensions/menu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/omarchy/extensions/menu.sh b/config/omarchy/extensions/menu.sh index 76857c15..bf618f07 100644 --- a/config/omarchy/extensions/menu.sh +++ b/config/omarchy/extensions/menu.sh @@ -12,9 +12,9 @@ # *) back_to show_main_menu ;; # esac # } -# +# # Example of overriding just the about menu action: (Using zsh instead of bash (default)) -# +# # show_about() { # exec omarchy-launch-or-focus-tui "zsh -c 'fastfetch; read -k 1'" # } From a69f332869a2f95d3c72a8401843da782c38d57c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 21 Feb 2026 10:51:50 +0100 Subject: [PATCH 4/4] Fix colored gutter in nvim by making line numbers transparent --- migrations/1771667323.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 migrations/1771667323.sh diff --git a/migrations/1771667323.sh b/migrations/1771667323.sh new file mode 100644 index 00000000..d93b58af --- /dev/null +++ b/migrations/1771667323.sh @@ -0,0 +1,7 @@ +echo "Fix colored gutter in nvim by making line numbers transparent" + +TRANSPARENCY_FILE="$HOME/.config/nvim/plugin/after/transparency.lua" + +if [[ -f $TRANSPARENCY_FILE ]] && ! grep -q "LineNr" "$TRANSPARENCY_FILE"; then + sed -i '/SignColumn/a vim.api.nvim_set_hl(0, "LineNr", { bg = "none" })\nvim.api.nvim_set_hl(0, "CursorLineNr", { bg = "none" })' "$TRANSPARENCY_FILE" +fi