From f9061513a9cac0cd185d816f8207510b6cef7dfd Mon Sep 17 00:00:00 2001 From: denode Date: Wed, 1 Apr 2026 15:29:26 +0200 Subject: [PATCH] Added Niri config and sorted them into right folders --- files/hyprland/dms/colors.conf | 25 ++ files/hyprland/hyprland.conf | 221 +++++++++++++++++ .../hyprland.conf.537253.2025-12-30@12:55:07~ | 223 ++++++++++++++++++ files/hyprland/hyprlock.conf | 119 ++++++++++ files/hyprland/hyprpaper.conf | 7 + files/hyprland/monitors.conf | 0 files/hyprland/wallpaper-restore.sh | 4 + files/hyprland/workspaces.conf | 0 files/niri/config.kdl | 199 ++++++++++++++++ files/niri/dms/alttab.kdl | 10 + files/niri/dms/binds.kdl | 0 files/niri/dms/colors.kdl | 39 +++ files/niri/dms/cursor.kdl | 0 files/niri/dms/layout.kdl | 22 ++ files/niri/dms/outputs.kdl | 0 files/niri/dms/windowrules.kdl | 0 files/niri/dms/wpblur.kdl | 9 + files/niri/wallpaper-restore.sh | 4 + sync-local-to-repo.sh | 5 +- 19 files changed, 885 insertions(+), 2 deletions(-) create mode 100644 files/hyprland/dms/colors.conf create mode 100644 files/hyprland/hyprland.conf create mode 100644 files/hyprland/hyprland.conf.537253.2025-12-30@12:55:07~ create mode 100644 files/hyprland/hyprlock.conf create mode 100644 files/hyprland/hyprpaper.conf create mode 100644 files/hyprland/monitors.conf create mode 100755 files/hyprland/wallpaper-restore.sh create mode 100644 files/hyprland/workspaces.conf create mode 100644 files/niri/config.kdl create mode 100644 files/niri/dms/alttab.kdl create mode 100644 files/niri/dms/binds.kdl create mode 100644 files/niri/dms/colors.kdl create mode 100644 files/niri/dms/cursor.kdl create mode 100644 files/niri/dms/layout.kdl create mode 100644 files/niri/dms/outputs.kdl create mode 100644 files/niri/dms/windowrules.kdl create mode 100644 files/niri/dms/wpblur.kdl create mode 100755 files/niri/wallpaper-restore.sh diff --git a/files/hyprland/dms/colors.conf b/files/hyprland/dms/colors.conf new file mode 100644 index 0000000..38bcb0e --- /dev/null +++ b/files/hyprland/dms/colors.conf @@ -0,0 +1,25 @@ +# ! Auto-generated file. Do not edit directly. +# Remove source = ./dms/colors.conf from your config to override. + +$primary = rgb(d0bcff) +$outline = rgb(948f99) +$error = rgb(f2b8b5) + +general { + col.active_border = $primary + col.inactive_border = $outline +} + +group { + col.border_active = $primary + col.border_inactive = $outline + col.border_locked_active = $error + col.border_locked_inactive = $outline + + groupbar { + col.active = $primary + col.inactive = $outline + col.locked_active = $error + col.locked_inactive = $outline + } +} diff --git a/files/hyprland/hyprland.conf b/files/hyprland/hyprland.conf new file mode 100644 index 0000000..43fe26a --- /dev/null +++ b/files/hyprland/hyprland.conf @@ -0,0 +1,221 @@ +# MONITORS # +monitor=eDP-1,1920x1080,auto,1.3333 + +$terminal = kitty +$fileManager = nemo + +exec-once = waybar & awww-daemon & swaync +exec-once = ~/.config/hypr/wallpaper.restore.sh + +env = XCURSOR_SIZE,24 +env = HYPRCURSOR_SIZE,24 + + permission = /usr/(bin|local/bin)/grim, screencopy, allow + permission = /usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland, screencopy, allow + permission = /usr/(bin|local/bin)/hyprpm, plugin, allow + +general { + gaps_in = 3 + gaps_out = 6 + + border_size = 1 + + col.active_border = rgba(171,189,245,1) rgba(171,189,245,1) 90deg + col.inactive_border = rgba(95,120,200,1) + + resize_on_border = true + + allow_tearing = true + + layout = dwindle +} +decoration { + rounding = 5 + rounding_power = 2 + + active_opacity = 0.95 + inactive_opacity = 0.90 + shadow { + enabled = true + range = 4 + render_power = 3 + color = rgba(1a1a1aee) + } + + blur { + enabled = true + size = 3 + passes = 1 + + vibrancy = 0.1696 + } +} + +animations { + enabled = true + + + # NAME, X0, Y0, X1, Y1 + bezier = easeOutQuint, 0.23, 1, 0.32, 1 + bezier = easeInOutCubic, 0.65, 0.05, 0.36, 1 + bezier = linear, 0, 0, 1, 1 + bezier = almostLinear, 0.5, 0.5, 0.75, 1 + bezier = quick, 0.15, 0, 0.1, 1 + + # NAME, ONOFF, SPEED, CURVE, [STYLE] + animation = global, 1, 10, default + animation = border, 1, 5.39, easeOutQuint + animation = windows, 1, 4.79, easeOutQuint + animation = windowsIn, 1, 4.1, easeOutQuint, slidefade 90 + animation = windowsOut, 1, 2.2, easeOutQuint, slidefade 270 + animation = fadeIn, 1, 1.73, almostLinear + animation = fadeOut, 1, 1.46, almostLinear + animation = fade, 1, 3.03, quick + animation = layers, 1, 3.81, easeOutQuint, fade + animation = layersIn, 1, 2, easeOutQuint, slide + animation = layersOut, 1, 2, easeOutQuint, slide + animation = fadeLayersIn, 1, 1.79, almostLinear + animation = fadeLayersOut, 1, 1.39, almostLinear + animation = workspaces, 1, 1.94, easeInOutCubic, slide + animation = workspacesIn, 1, 1.21, easeInOutCubic, slide + animation = workspacesOut, 1, 1.94, easeInOutCubic, slide + animation = zoomFactor, 1, 7, quick +} + +dwindle { + pseudotile = true + preserve_split = true +} + +master { + new_status = master +} + +misc { + force_default_wallpaper = 0 + disable_hyprland_logo = true + disable_splash_rendering = true +} + + + +input { + kb_layout = de + kb_variant = + kb_model = + kb_options = + kb_rules = + + follow_mouse = 1 + + sensitivity = 0 . + + touchpad { + natural_scroll = false + } +} + +gesture = 3, horizontal, workspace + +device { + name = epic-mouse-v1 + sensitivity = -0.5 +} + + +$mainMod = SUPER + +bind = $mainMod, Return, exec, $terminal +bind = $mainMod, Q, killactive,^ +bind = $mainMod, E, exec, $fileManager +bind = $mainMod, D, exec, pkill wofi || wofi --show drun +bind = $mainMod, J, togglesplit, # dwindle +bind = $mainMod, F, exec, firefox +bind = $mainMod, K, fullscreen +bind = $mainMod, L, exec, hyprlock +bind = $mainMod, P, exec, /home/denode/.config/waybar/scripts/power.sh +bind = $mainMod SHIFT, S, exec, grim -g "$(slurp)" - | swappy -f - +bind = $mainMod, N, exec, swaync-client -t -sw +bind = $mainMod SHIFT, N, exec, swaync-client -d -sw +bind = $mainMod, T, exec, gnome-text-editor +bind = $mainMod, left, movefocus, l +bind = $mainMod, right, movefocus, r +bind = $mainMod, up, movefocus, u +bind = $mainMod, down, movefocus, d +bind = $mainMod, M, exec, thunderbird +bind = $mainMod, S, exec, signal-desktop +bind = $mainMod, 1, workspace, 1 +bind = $mainMod, 2, workspace, 2 +bind = $mainMod, 3, workspace, 3 +bind = $mainMod, 4, workspace, 4 +bind = $mainMod, 5, workspace, 5 +bind = $mainMod, 6, workspace, 6 +bind = $mainMod, 7, workspace, 7 +bind = $mainMod, 8, workspace, 8 +bind = $mainMod, 9, workspace, 9 +bind = $mainMod, 0, workspace, 10 + +bind = $mainMod SHIFT, 1, movetoworkspace, 1 +bind = $mainMod SHIFT, 2, movetoworkspace, 2 +bind = $mainMod SHIFT, 3, movetoworkspace, 3 +bind = $mainMod SHIFT, 4, movetoworkspace, 4 +bind = $mainMod SHIFT, 5, movetoworkspace, 5 +bind = $mainMod SHIFT, 6, movetoworkspace, 6 +bind = $mainMod SHIFT, 7, movetoworkspace, 7 +bind = $mainMod SHIFT, 8, movetoworkspace, 8 +bind = $mainMod SHIFT, 9, movetoworkspace, 9 +bind = $mainMod SHIFT, 0, movetoworkspace, 10 + +bind = $mainMod, mouse_down, workspace, e+1 +bind = $mainMod, mouse_up, workspace, e-1 + +bindm = $mainMod, mouse:272, movewindow +bindm = $mainMod, mouse:273, resizewindow + +bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+ +bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- +bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle +bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle +bindel = ,XF86MonBrightnessUp, exec, brightnessctl -e4 -n2 set 5%+ +bindel = ,XF86MonBrightnessDown, exec, brightnessctl -e4 -n2 set 5%- +bindl = , XF86AudioNext, exec, playerctl next +bindl = , XF86AudioPause, exec, playerctl play-pause +bindl = , XF86AudioPlay, exec, playerctl play-pause +bindl = , XF86AudioPrev, exec, playerctl previous +bindl = ,switch:on:Lid Switch, exec, hyprlock +# own things lol + +bind = ,XF86Display, exec, blueman-manager +bind = ,XF86Tools, exec, kitty +bind = ,XF86Search, exec, pkill wofi || wofi --show drun +bind = ,XF86LaunchA, exec, nwg-displays +bind = ,XF86Explorer, exec, grim -g "$(slurp)" - | swappy -f - +bind = SUPER SHIFT, V, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy +bind = $mainMod, B, exec, ~/.local/bin/wallpaper-picker +windowrule { + name = supress-maximize-events + match:class = .* + suppress_event = maximize +} + +windowrule { + name = fix-xwayland-drags + match:class = ^$ + match:title = ^$ + match:xwayland = true + match:float = true + match:fullscreen = false + match:pin = false + + no_focus = true +} + +xwayland{force_zero_scaling=true} +windowrule { + name = move-hyprland-rounding + match:class = hyprland-run + move = 20 monitor_h-120 + float = yes +} + +exec-once = blueman-applet diff --git a/files/hyprland/hyprland.conf.537253.2025-12-30@12:55:07~ b/files/hyprland/hyprland.conf.537253.2025-12-30@12:55:07~ new file mode 100644 index 0000000..ea9c292 --- /dev/null +++ b/files/hyprland/hyprland.conf.537253.2025-12-30@12:55:07~ @@ -0,0 +1,223 @@ +# MONITORS # +monitor=eDP-1,1920x1080,auto,1.3333 + +# MY PROGRAMS # +$terminal = kitty +$fileManager = nemo + + +# AUTOSTART # + exec-once = waybar & hyprpaper & swaync + +# ENVIRONMENT VARIABLES # +env = XCURSOR_SIZE,24 +env = HYPRCURSOR_SIZE,24 + +# PERMISSIONS # + permission = /usr/(bin|local/bin)/grim, screencopy, allow + permission = /usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland, screencopy, allow + permission = /usr/(bin|local/bin)/hyprpm, plugin, allow + +# LOOK AND FEEL # +general { + gaps_in = 5 + gaps_out = 10 + + border_size = 1 + + col.active_border = rgba(171,189,245,1) rgba(171,189,245,1) 45deg + col.inactive_border = rgba(95,120,200,1) + + resize_on_border = false + + allow_tearing = false + + layout = dwindle +} +#deco +decoration { + rounding = 10 + rounding_power = 2 + + active_opacity = 0.95 + inactive_opacity = 0.90 +#shadow + shadow { + enabled = true + range = 4 + render_power = 3 + color = rgba(1a1a1aee) + } + +#blur + blur { + enabled = true + size = 3 + passes = 1 + + vibrancy = 0.1696 + } +} + +#animations +animations { + enabled = yes, please :) + +#curves + # NAME, X0, Y0, X1, Y1 + bezier = easeOutQuint, 0.23, 1, 0.32, 1 + bezier = easeInOutCubic, 0.65, 0.05, 0.36, 1 + bezier = linear, 0, 0, 1, 1 + bezier = almostLinear, 0.5, 0.5, 0.75, 1 + bezier = quick, 0.15, 0, 0.1, 1 + +#animations + # NAME, ONOFF, SPEED, CURVE, [STYLE] + animation = global, 1, 10, default + animation = border, 1, 5.39, easeOutQuint + animation = windows, 1, 4.79, easeOutQuint + animation = windowsIn, 1, 4.1, easeOutQuint, slidefade 90 + animation = windowsOut, 1, 2.2, easeOutQuint, slidefade 270 + animation = fadeIn, 1, 1.73, almostLinear + animation = fadeOut, 1, 1.46, almostLinear + animation = fade, 1, 3.03, quick + animation = layers, 1, 3.81, easeOutQuint + animation = layersIn, 1, 4, easeOutQuint, fade + animation = layersOut, 1, 1.5, linear, fade + animation = fadeLayersIn, 1, 1.79, almostLinear + animation = fadeLayersOut, 1, 1.39, almostLinear + animation = workspaces, 1, 1.94, easeInOutCubic, slide + animation = workspacesIn, 1, 1.21, easeInOutCubic, slide + animation = workspacesOut, 1, 1.94, easeInOutCubic, slide + animation = zoomFactor, 1, 7, quick +} + +#dwindle +dwindle { + pseudotile = true + preserve_split = true +} + +#master +master { + new_status = master +} + +#misc +misc { + force_default_wallpaper = 0 + disable_hyprland_logo = true +} + + +# INPUT # + +#input +input { + kb_layout = de + kb_variant = + kb_model = + kb_options = + kb_rules = + + follow_mouse = 1 + + sensitivity = 0 . + + touchpad { + natural_scroll = false + } +} + +#Gestures +gesture = 3, horizontal, workspace + +device { + name = epic-mouse-v1 + sensitivity = -0.5 +} + + +# KEYBINDINGS # +$mainMod = SUPER + +bind = $mainMod, Return, exec, $terminal +bind = $mainMod, Q, killactive,^ +bind = $mainMod, E, exec, $fileManager +bind = $mainMod, D, exec, pkill wofi || wofi --show drun +bind = $mainMod, J, togglesplit, # dwindle +bind = $mainMod, F, exec, firefox +bind = $mainMod, K, fullscreen +bind = $mainMod, L, exec, hyprlock +bind = $mainMod, P, exec, /home/denode/.config/waybar/scripts/power.sh +bind = $mainMod SHIFT, S, exec, grim -g "$(slurp)" - | swappy -f - +bind = $mainMod, N, exec, swaync-client -t -sw +bind = $mainMod SHIFT, N, exec, swaync-client -d -sw + +# Move focus with mainMod + arrow keys +bind = $mainMod, left, movefocus, l +bind = $mainMod, right, movefocus, r +bind = $mainMod, up, movefocus, u +bind = $mainMod, down, movefocus, d + +# Switch workspaces with mainMod + [0-9] +bind = $mainMod, 1, workspace, 1 +bind = $mainMod, 2, workspace, 2 +bind = $mainMod, 3, workspace, 3 +bind = $mainMod, 4, workspace, 4 +bind = $mainMod, 5, workspace, 5 +bind = $mainMod, 6, workspace, 6 +bind = $mainMod, 7, workspace, 7 +bind = $mainMod, 8, workspace, 8 +bind = $mainMod, 9, workspace, 9 +bind = $mainMod, 0, workspace, 10 + +# Move active window to a workspace with mainMod + SHIFT + [0-9] +bind = $mainMod SHIFT, 1, movetoworkspace, 1 +bind = $mainMod SHIFT, 2, movetoworkspace, 2 +bind = $mainMod SHIFT, 3, movetoworkspace, 3 +bind = $mainMod SHIFT, 4, movetoworkspace, 4 +bind = $mainMod SHIFT, 5, movetoworkspace, 5 +bind = $mainMod SHIFT, 6, movetoworkspace, 6 +bind = $mainMod SHIFT, 7, movetoworkspace, 7 +bind = $mainMod SHIFT, 8, movetoworkspace, 8 +bind = $mainMod SHIFT, 9, movetoworkspace, 9 +bind = $mainMod SHIFT, 0, movetoworkspace, 10 + +# Example special workspace (scratchpad) +bind = $mainMod, S, togglespecialworkspace, magic +#bind = $mainMod SHIFT, S, movetoworkspace, special:magic + +# Scroll through existing workspaces with mainMod + scroll +bind = $mainMod, mouse_down, workspace, e+1 +bind = $mainMod, mouse_up, workspace, e-1 + +# Move/resize windows with mainMod + LMB/RMB and dragging +bindm = $mainMod, mouse:272, movewindow +bindm = $mainMod, mouse:273, resizewindow + +# Laptop multimedia keys for volume and LCD brightness +bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+ +bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- +bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle +bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle +bindel = ,XF86MonBrightnessUp, exec, brightnessctl -e4 -n2 set 5%+ +bindel = ,XF86MonBrightnessDown, exec, brightnessctl -e4 -n2 set 5%- + +# Requires playerctl +bindl = , XF86AudioNext, exec, playerctl next +bindl = , XF86AudioPause, exec, playerctl play-pause +bindl = , XF86AudioPlay, exec, playerctl play-pause +bindl = , XF86AudioPrev, exec, playerctl previous +bindl = ,switch:on:Lid Switch, exec, hyprlock +HALLO +# WINDOWS AND WORKSPACES # + +# Ignore maximize requests from apps. You'll probably like this. +windowrule = suppressevent maximize, class:.* + +# Fix some dragging issues with XWayland +windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0 +xwayland { + force_zero_scaling = true +} diff --git a/files/hyprland/hyprlock.conf b/files/hyprland/hyprlock.conf new file mode 100644 index 0000000..e6da379 --- /dev/null +++ b/files/hyprland/hyprlock.conf @@ -0,0 +1,119 @@ +# BACKGROUND +background { + monitor = eDP-1 + path = /home/denode/Pictures/wallpaper/japan03.jpg + blur_passes = 0.5 + contrast = 1 + brightness = 0.5 + vibrancy = 0.2 + vibrancy_darkness = 0.2 +} + +# GENERAL +general { + no_fade_in = false + no_fade_out = false + hide_cursor = true + grace = 2 + disable_loading_bar = true + ignore_empty_input = true +} + +# INPUT FIELD +input-field { + monitor = eDP-1 + size = 300, 50 + outline_thickness = 2 + inner_color = rgba(0,0,0,0.1) + dots_color = rgba(0, 0, 0, 0.85) + dots_size = 0.2 + dots_spacing = 0.35 + dots_center = true + input-fg-color = rgba(88,129,87,0.1) + dots_color = rgba(255,255,255,0.85) + outer_color = rgba(255,255,255,0.85) + font_color = rgba(255,255,255, 0.85) + fade_on_empty = true + rounding = -1 + check_color = rgb(86,65,48) + placeholder_text = input password... + hide_input = false + fail_color = rgb(255,255,255) + fail_text = bist du blöd? ($ATTEMPTS) + position = 0, -468 + halign = center + valign = center +} +# Profie-Photo +image { + monitor = + path = /home/denode/Pictures/flink02.png + border_color = 0xffdddddd + border_size = 0 + size = 100 + rounding = -1 + rotate = 0 + reload_time = -1 + reload_cmd = + position = 0, -320 + halign = center + valign = center +} +# USER +label { + monitor = + text = $USER + color = rgba(255,255,255,0.85) + font_size = 23 + font_family = SF Pro Text + position = 0, -405 + halign = center + valign = center +} +# DATE +label { + monitor = + text = cmd[update:1000] echo "$(LC_TIME=en_US.UTF-8 date +"%A, %B %d")" + color = rgba(0,0,0,1) + font_size = 22 + font_family = SF Pro Text Bold + position = 0, 405 + halign = center + valign = center +} + +# TIME +label { + monitor = + text = cmd[update:1000] echo "$(date +"%-H:%M:%S")" + color = rgba(0,0,0, 1) + font_size = 95 + font_family = SF Pro Text Bold + position = 0, 310 + halign = center + valign = center +} + + +# CURRENT SONG +label { + monitor = + text = cmd[update:1000] echo "$(~/.config/waybar/scripts/song.sh)" + color = $foreground + color = rgba(255,255,255,0.65) + font_size = 18 + font_family = SF Pro Text + position = 0, 50 + halign = center + valign = bottom +} +label { + monitor = eDP-1 + text = cmd[update:30] bash -c 'ac_online=$(cat /sys/class/power_supply/AC/online); bat0=$(cat /sys/class/power_supply/BAT0/capacity); bat1=$(cat /sys/class/power_supply/BAT1/capacity); avg=$(( (bat0 + bat1) / 2 )); if [ "$ac_online" = "1" ]; then echo " $avg %"; else echo "$avg %"; fi' + color = rgba(0,0,0,0.65) + font_family = SF Pro Text Bold + font_size = 18 + position = -10, 1030 + halign = right + valign = bottom +} diff --git a/files/hyprland/hyprpaper.conf b/files/hyprland/hyprpaper.conf new file mode 100644 index 0000000..f83bd07 --- /dev/null +++ b/files/hyprland/hyprpaper.conf @@ -0,0 +1,7 @@ +wallpaper { + monitor = eDP-1 + path = /home/denode/Pictures/bridge01.jpg + fit_mode = cover +} + +splash = false diff --git a/files/hyprland/monitors.conf b/files/hyprland/monitors.conf new file mode 100644 index 0000000..e69de29 diff --git a/files/hyprland/wallpaper-restore.sh b/files/hyprland/wallpaper-restore.sh new file mode 100755 index 0000000..604e7a5 --- /dev/null +++ b/files/hyprland/wallpaper-restore.sh @@ -0,0 +1,4 @@ +#!/bin/bash +awww-daemon & +sleep 0.5 +awww img "/home/denode/Pictures/wallpaper/minimal01.png" --transition-type simple diff --git a/files/hyprland/workspaces.conf b/files/hyprland/workspaces.conf new file mode 100644 index 0000000..e69de29 diff --git a/files/niri/config.kdl b/files/niri/config.kdl new file mode 100644 index 0000000..e528a13 --- /dev/null +++ b/files/niri/config.kdl @@ -0,0 +1,199 @@ +workspace "1" +workspace "2" +//--input +input { + keyboard { + xkb { + } + + numlock + } + touchpad { + tap + } + mouse { + } + trackpoint { + } + focus-follows-mouse +} +//output +/-output "eDP-1" { + mode "1920x1080@120.030" + scale 2 + transform "normal" + position x=1280 y=0 +} + +output "HDMI-A-1" { + mode "2560x1440@144.0" + scale 1.0 + position x=1920 y=0 +} +//--layout +layout { + gaps 5 + center-focused-column "never" + preset-column-widths { + proportion 0.5 + proportion 1.0 + + } + default-column-width { proportion 0.5; } + focus-ring { + width 1 + active-color "white" + inactive-color "#505050" + } + border { + off + width 4 + active-color "#ffc87f" + inactive-color "#505050" + urgent-color "#9b0000" + } + shadow { + off + softness 30 + spread 5 + offset x=0 y=5 + color "#0007" + } + struts { + } + +} + +//--startup +spawn-at-startup "waybar" +spawn-at-startup "~/.config/niri/wallpaper-restore.sh" +spawn-at-startup "awww-daemon" +spawn-at-startup "niri msg action focus-workspace 2" +hotkey-overlay { + skip-at-startup +} +screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png" +animations { + slowdown 0.5 +} + +//--- window rules // +window-rule { + match app-id=r#"firefox$"# title="^Picture-in-Picture$" + open-floating true +} + +/-window-rule { + match app-id=r#"^org\.keepassxc\.KeePassXC$"# + match app-id=r#"^org\.gnome\.World\.Secrets$"# + block-out-from "screen-capture" + // block-out-from "screencast" +} +/-window-rule { + geometry-corner-radius 12 + clip-to-geometry true +} + +window-rule { + default-column-width {proportion 0.5;} +} + + +//--switch-events +switch-events { + lid-close { + spawn "hyprlock" + } +} +//-- keybinds +binds { + Mod+Return { spawn "kitty"; } + Mod+D { spawn "sh" "-c" "pkill wofi || wofi --show drun"; } + Mod+L { spawn "hyprlock"; } + Mod+F { spawn "firefox"; } + Mod+B { spawn "~/.local/bin/wallpaper-niri";} + Mod+P { spawn "~/.config/waybar/scripts/power.sh";} + Mod+M { spawn "thunderbird";} + Mod+T { spawn "gnome-text-editor";} + Mod+S { spawn "signal-desktop";} + + XF86AudioRaiseVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1+ -l 1.0"; } + XF86AudioLowerVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1-"; } + XF86AudioMute allow-when-locked=true { spawn-sh "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"; } + XF86MonBrightnessUp allow-when-locked=true { spawn "brightnessctl" "--class=backlight" "set" "+5%"; } + XF86MonBrightnessDown allow-when-locked=true { spawn "brightnessctl" "--class=backlight" "set" "5%-"; } + Mod+O repeat=false { toggle-overview; } + Mod+Q repeat=false { close-window; } + + Mod+Left { focus-column-left; } + Mod+Down { focus-window-down; } + Mod+Up { focus-window-up; } + Mod+Right { focus-column-right; } + Mod+Shift+Left { move-column-left; } + Mod+Shift+Down { move-window-down; } + Mod+Shift+Up { move-window-up; } + Mod+Shift+Right { move-column-right; } + Mod+Shift+H { move-column-left; } + Mod+Shift+J { move-window-down; } + Mod+Shift+K { move-window-up; } + Mod+Shift+L { move-column-right; } + Mod+Home { focus-column-first; } + Mod+End { focus-column-last; } + Mod+Ctrl+Home { move-column-to-first; } + Mod+Ctrl+End { move-column-to-last; } + Mod+Page_Down { focus-workspace-down; } + Mod+Page_Up { focus-workspace-up; } + Mod+U { focus-workspace-down; } + Mod+I { focus-workspace-up; } + Mod+Ctrl+Page_Down { move-column-to-workspace-down; } + Mod+Ctrl+Page_Up { move-column-to-workspace-up; } + Mod+Ctrl+U { move-column-to-workspace-down; } + Mod+Ctrl+I { move-column-to-workspace-up; } + Mod+Shift+U { move-workspace-down; } + Mod+Shift+I { move-workspace-up; } + Mod+WheelScrollRight { focus-column-right; } + Mod+WheelScrollLeft { focus-column-left; } + Mod+Ctrl+WheelScrollRight { move-column-right; } + Mod+Ctrl+WheelScrollLeft { move-column-left; } + Mod+1 { focus-workspace 1; } + Mod+2 { focus-workspace 2; } + Mod+3 { focus-workspace 3; } + Mod+4 { focus-workspace 4; } + Mod+5 { focus-workspace 5; } + Mod+6 { focus-workspace 6; } + Mod+7 { focus-workspace 7; } + Mod+8 { focus-workspace 8; } + Mod+9 { focus-workspace 9; } + Mod+0 { focus-workspace 10;} + Mod+Shift+1 { move-column-to-workspace 1; } + Mod+Shift+2 { move-column-to-workspace 2; } + Mod+Shift+3 { move-column-to-workspace 3; } + Mod+Shift+4 { move-column-to-workspace 4; } + Mod+Shift+5 { move-column-to-workspace 5; } + Mod+Shift+6 { move-column-to-workspace 6; } + Mod+Shift+7 { move-column-to-workspace 7; } + Mod+Shift+8 { move-column-to-workspace 8; } + Mod+Shift+9 { move-column-to-workspace 9; } + Mod+Shift+0 {move-column-to-workspace 10;} + Mod+Comma { consume-window-into-column; } + Mod+Period { expel-window-from-column; } + Mod+R { switch-preset-column-width; } + Mod+Shift+R { switch-preset-window-height; } + Mod+Ctrl+R { reset-window-height; } + Mod+K { fullscreen-window; } + Mod+Ctrl+F { expand-column-to-available-width;} + Mod+Minus { set-column-width "-10%"; } + Mod+Equal { set-column-width "+10%"; } + Mod+Shift+Minus { set-window-height "-10%"; } + Mod+Shift+Equal { set-window-height "+10%"; } + Mod+V { toggle-window-floating; } + Mod+Shift+V { switch-focus-between-floating-and-tiling; } + Mod+W { toggle-column-tabbed-display; } + + Mod+Shift+S { screenshot; } + XF86Explorer { screenshot-screen; } + XF86Display {spawn "blueman-manager";} + XF86Tools {spawn "kitty";} + XF86Search {spawn "sh" "-c" "pkill wofi || wofi --show drun";} + Mod+Shift+P { power-off-monitors; } +} diff --git a/files/niri/dms/alttab.kdl b/files/niri/dms/alttab.kdl new file mode 100644 index 0000000..091ea07 --- /dev/null +++ b/files/niri/dms/alttab.kdl @@ -0,0 +1,10 @@ +// ! DO NOT EDIT ! + // ! AUTO-GENERATED BY DMS ! + // ! CHANGES WILL BE OVERWRITTEN ! + // ! PLACE YOUR CUSTOM CONFIGURATION ELSEWHERE ! + + recent-windows { + highlight { + corner-radius 12 + } + } diff --git a/files/niri/dms/binds.kdl b/files/niri/dms/binds.kdl new file mode 100644 index 0000000..e69de29 diff --git a/files/niri/dms/colors.kdl b/files/niri/dms/colors.kdl new file mode 100644 index 0000000..145a179 --- /dev/null +++ b/files/niri/dms/colors.kdl @@ -0,0 +1,39 @@ +// ! Auto-generated file. Do not edit directly. +// Remove `include "dms/colors.kdl"` from your config to override. + +layout { + background-color "transparent" + + focus-ring { + active-color "#d0bcff" + inactive-color "#948f99" + urgent-color "#f2b8b5" + } + + border { + active-color "#d0bcff" + inactive-color "#948f99" + urgent-color "#f2b8b5" + } + + shadow { + color "#00000070" + } + + tab-indicator { + active-color "#d0bcff" + inactive-color "#948f99" + urgent-color "#f2b8b5" + } + + insert-hint { + color "#d0bcff80" + } +} + +recent-windows { + highlight { + active-color "#4f378b" + urgent-color "#f2b8b5" + } +} diff --git a/files/niri/dms/cursor.kdl b/files/niri/dms/cursor.kdl new file mode 100644 index 0000000..e69de29 diff --git a/files/niri/dms/layout.kdl b/files/niri/dms/layout.kdl new file mode 100644 index 0000000..431afbf --- /dev/null +++ b/files/niri/dms/layout.kdl @@ -0,0 +1,22 @@ +// ! DO NOT EDIT ! + // ! AUTO-GENERATED BY DMS ! + // ! CHANGES WILL BE OVERWRITTEN ! + // ! PLACE YOUR CUSTOM CONFIGURATION ELSEWHERE ! + + layout { + gaps 4 + + border { + width 2 + } + + focus-ring { + width 2 + } + } + window-rule { + geometry-corner-radius 12 + clip-to-geometry true + tiled-state true + draw-border-with-background false + } diff --git a/files/niri/dms/outputs.kdl b/files/niri/dms/outputs.kdl new file mode 100644 index 0000000..e69de29 diff --git a/files/niri/dms/windowrules.kdl b/files/niri/dms/windowrules.kdl new file mode 100644 index 0000000..e69de29 diff --git a/files/niri/dms/wpblur.kdl b/files/niri/dms/wpblur.kdl new file mode 100644 index 0000000..3d58802 --- /dev/null +++ b/files/niri/dms/wpblur.kdl @@ -0,0 +1,9 @@ +// ! DO NOT EDIT ! +// ! AUTO-GENERATED BY DMS ! +// ! CHANGES WILL BE OVERWRITTEN ! +// ! PLACE YOUR CUSTOM CONFIGURATION ELSEWHERE ! + +layer-rule { + match namespace="dms:blurwallpaper" + place-within-backdrop true +} diff --git a/files/niri/wallpaper-restore.sh b/files/niri/wallpaper-restore.sh new file mode 100755 index 0000000..604e7a5 --- /dev/null +++ b/files/niri/wallpaper-restore.sh @@ -0,0 +1,4 @@ +#!/bin/bash +awww-daemon & +sleep 0.5 +awww img "/home/denode/Pictures/wallpaper/minimal01.png" --transition-type simple diff --git a/sync-local-to-repo.sh b/sync-local-to-repo.sh index c57fbc5..fcf72fe 100755 --- a/sync-local-to-repo.sh +++ b/sync-local-to-repo.sh @@ -1,7 +1,8 @@ #!/bin/bash -echo "Copy Hyprland configs..." -cp -r ~/.config/hypr/* ~/arch-setup/files/ +echo "Coping configs..." +cp -r ~/.config/hypr/* ~/arch-setup/files/hyprland cp -r ~/Pictures/wallpaper* ~/arch-setup/files/Pictures/wallpaper +cp -r ~/.config/niri/* ~/arch-setup/files/niri echo "Finished! Now 'git add'."