diff --git a/.config/gtk-3.0/bookmarks b/.config/gtk-3.0/bookmarks index 0b7faea..1b24a27 100644 --- a/.config/gtk-3.0/bookmarks +++ b/.config/gtk-3.0/bookmarks @@ -1,5 +1,6 @@ -file:///home/mpuchstein/Documents/ -file:///home/mpuchstein/Pictures/ -file:///home/mpuchstein/Music/ -file:///home/mpuchstein/Nextcloud/ -file:///home/mpuchstein/Downloads/ +file:///home/mpuchstein/Documents/uni uni +file:///home/mpuchstein/Documents +file:///home/mpuchstein/Pictures +file:///home/mpuchstein/Music +file:///home/mpuchstein/Nextcloud +file:///home/mpuchstein/Downloads diff --git a/.config/hypr/conf.d/keybinds.conf b/.config/hypr/conf.d/keybinds.conf index fdcbbd9..493ef96 100644 --- a/.config/hypr/conf.d/keybinds.conf +++ b/.config/hypr/conf.d/keybinds.conf @@ -145,6 +145,10 @@ bindel = SHIFT ,XF86AudioRaiseVolume, exec, swayosd-client --input-volume raise bindel = SHIFT ,XF86AudioLowerVolume, exec, swayosd-client --input-volume lower --max-volume 150 bindel = SHIFT ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_SOURCE@ toggle +# Zoom control +bind = $mainMod, M, exec, hyprctl keyword cursor:zoom_factor 2 +bind = $mainMod SHIFT, M, exec, hyprctl keyword cursor:zoom_factor 1 + # Requires playerctl bindl = , XF86AudioNext, exec, swayosd-client --playerctl next bindl = , XF86AudioPause, exec, swayosd-client --playerctl play-pause diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index e5dfbab..185ae4e 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -245,6 +245,27 @@ windowrulev2 = suppressevent maximize, class:.* # Fix some dragging issues with XWayland windowrulev2 = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0 +## ========== Communication ========== +# Mumble & Discord & TeamSpeak +windowrulev2 = workspace 5, class:^(info\.mumble\.Mumble|discord|TeamSpeak)$ +# Signal & nheko +windowrulev2 = workspace 4, class:^(signal|Element)$ + +## ========== Multimedia ========== +windowrulev2 = workspace 10, class:Spotify + +## ========== Development ========== +windowrulev2 = float, class:jetbrains-webstorm, title:Welcome to WebStorm +windowrulev2 = size 1080 720, class:jetbrains-webstorm, title:Welcome to WebStorm + +## ========== Gaming ========== +# Steam & Battle.net & Lutris +windowrulev2 = workspace 3, class:^(steam|battle\.net\.exe|net\.lutris\.Lutris)$ + +## ========== System ========== +windowrulev2 = float, class:org.keepassxc.KeePassXC +windowrulev2 = float, class:com.saivert.pwvucontrol + # Blur swaync layerrule = blur, swaync-control-center layerrule = blur, swaync-notification-window diff --git a/.config/hypr/hyprpaper.conf b/.config/hypr/hyprpaper.conf new file mode 120000 index 0000000..ecf3590 --- /dev/null +++ b/.config/hypr/hyprpaper.conf @@ -0,0 +1 @@ +hyprpaper.conf##hostname.owlenpc00 \ No newline at end of file diff --git a/.config/hypr/monitors.conf b/.config/hypr/monitors.conf index f2f72a5..16eb2fd 100644 --- a/.config/hypr/monitors.conf +++ b/.config/hypr/monitors.conf @@ -1,3 +1,4 @@ -# Generated by nwg-displays on 2025-03-31 at 20:41:02. Do not edit manually. +# Generated by nwg-displays on 2025-04-13 at 17:49:20. Do not edit manually. -monitor=eDP-1,1366x768@59.97,0x0,1.0 +monitor=DP-2,1920x1080@60.0,0x0,1.0 +monitor=DP-3,1920x1080@144.0,1920x0,1.0 diff --git a/.config/hypr/workspaces.conf b/.config/hypr/workspaces.conf index e69de29..4b74bc4 100644 --- a/.config/hypr/workspaces.conf +++ b/.config/hypr/workspaces.conf @@ -0,0 +1,12 @@ +# Generated by nwg-displays on 2025-04-13 at 17:49:11. Do not edit manually. + +workspace=1,monitor:DP-2,default:true +workspace=2,monitor:DP-2 +workspace=3,monitor:DP-2 +workspace=4,monitor:DP-2 +workspace=5,monitor:DP-2 +workspace=6,monitor:DP-3,default:true +workspace=7,monitor:DP-3 +workspace=8,monitor:DP-3 +workspace=9,monitor:DP-3 +workspace=10,monitor:DP-3 diff --git a/.config/pipewire/pipewire.conf.d/99-input-denoising.conf b/.config/pipewire/pipewire.conf.d/99-input-denoising.conf new file mode 100644 index 0000000..487b4d0 --- /dev/null +++ b/.config/pipewire/pipewire.conf.d/99-input-denoising.conf @@ -0,0 +1,33 @@ +context.modules = [ +{ name = libpipewire-module-filter-chain + args = { + node.description = "Noise Canceling source" + media.name = "Noise Canceling source" + filter.graph = { + nodes = [ + { + type = ladspa + name = rnnoise + plugin = /usr/lib/ladspa/librnnoise_ladspa.so + label = noise_suppressor_mono + control = { + "VAD Threshold (%)" = 80.0 + "VAD Grace Period (ms)" = 200 + "Retroactive VAD Grace (ms)" = 0 + } + } + ] + } + capture.props = { + node.name = "capture.rnnoise_source" + node.passive = true + audio.rate = 48000 + } + playback.props = { + node.name = "rnnoise_source" + media.class = Audio/Source + audio.rate = 48000 + } + } +} +]