Merge branch 'dev' into rc

This commit is contained in:
David Heinemeier Hansson
2026-02-21 10:51:55 +01:00
4 changed files with 23 additions and 2 deletions
+10
View File
@@ -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/
+4
View File
@@ -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
+2 -2
View File
@@ -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'"
# }
+7
View File
@@ -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