From 6c2852be74f8a89fa299e2a251795c2086f7dfc0 Mon Sep 17 00:00:00 2001 From: Toniiz Date: Mon, 27 Apr 2026 20:50:07 -0700 Subject: [PATCH] edit: niri config & add changes from default to other apps, work in progress --- configs/niri_l/README.md | 57 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/configs/niri_l/README.md b/configs/niri_l/README.md index 48172ea..c199142 100644 --- a/configs/niri_l/README.md +++ b/configs/niri_l/README.md @@ -25,3 +25,60 @@ Mod+D hotkey-overlay-title="Run an Application: fuzzel" { spawn "fuzzel"; } # Changed to Mod+D hotkey-overlay-title="Run an Application: rofi" { spawn "~/Scripts/toggle-rofi.sh"; } ``` +## Setting Changed From Default Values + +### Input (Desktops) +```bash + mouse { + // off + // natural-scroll + // accel-speed 0.2 + accel-profile "flat" + // scroll-method "no-scroll" + } +``` +Set `accel-profile "flat"` +`accel-speed` can be changed as desired, each mouse value will vary + +### Input (Laptops) +```bash + touchpad { + // off + tap + // dwt + // dwtp + // drag false + // drag-lock + natural-scroll + // accel-speed 0.2 + // accel-profile "flat" + // scroll-method "two-finger" + // disabled-on-external-mouse + } + mouse { + // off + // natural-scroll + // accel-speed 0.2 + accel-profile "flat" + // scroll-method "no-scroll" + } +``` +Set `accel-profile "flat"` for `mouse` and `touchpad` +`accel-speed` can be changed as desired, each mouse value will vary + +### Binds +```bash + // Suggested binds for running programs: terminal, app launcher, screen locker. + Mod+Shift+Return { spawn "foot" "--app-id" "float"; } + Mod+Ctrl+Return { spawn "kitty" "--class=floating-kitty"; } + Mod+Shift+A hotkey-overlay-title="Open btop" { spawn "kitty" "btop"; } + Mod+Shift+N hotkey-overlay-title="Open Obsidian" { spawn "obsidian"; } +``` + +### Window Rules +```bash +window-rule { + match app-id="float" + open-floating true +} +```