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/ 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 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'" # } 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