Files
nixos/henrovnix_ok/assets/conf/desktop/hypr/hyprscrolling.conf
T
2026-02-25 14:19:46 +01:00

52 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# --------------------------------------------------
# Hyprscrolling scrolling layout with indicators
# Managed in repo: assets/conf/desktop/hypr/hyprscrolling.conf
# --------------------------------------------------
# Load plugin (.so is symlinked by Nix module)
plugin = /etc/hypr/plugins/libhyprscrolling.so
# Make scrolling the default layout
general {
layout = scrolling
}
# --------------------------------------------------
# Plugin configuration
# --------------------------------------------------
plugin:hyprscrolling {
# --- Core behaviour ---
enable = true
focus_follows_mouse = true
smooth_scrolling = true
# --- Gaps & spacing ---
gaps_in = 6
gaps_out = 16
# --- Indicators ---
# Show visual indicators for stacked windows
indicators = true
# Style of indicators (examples: line, dots, bar)
indicator_style = bar
# Thickness / size
indicator_thickness = 4
# Spacing between indicators
indicator_spacing = 6
# Offset from window edge
indicator_offset = 8
# Colors (RGBA)
indicator_color_active = rgba(137, 180, 250, 0.9) # blue-ish (Catppuccin style)
indicator_color_inactive = rgba(88, 91, 112, 0.6)
# Position (top, bottom, left, right)
indicator_position = bottom
}