diff options
Diffstat (limited to 'raveos-hyprland-theme/theme-data/hypr/hyprland.conf')
| -rw-r--r-- | raveos-hyprland-theme/theme-data/hypr/hyprland.conf | 154 |
1 files changed, 154 insertions, 0 deletions
diff --git a/raveos-hyprland-theme/theme-data/hypr/hyprland.conf b/raveos-hyprland-theme/theme-data/hypr/hyprland.conf new file mode 100644 index 0000000..efdfc7d --- /dev/null +++ b/raveos-hyprland-theme/theme-data/hypr/hyprland.conf @@ -0,0 +1,154 @@ +source = ./dms/colors.conf + +# +# ALT TAB# +# +bind = SUPER, TAB, exec, hyprswitch gui --mod-key super_l --key tab --close mod-key-release --sort-recent --filter-current-monitor + +# +# MONITORS# +# +source = ./monitors.conf +source = ./workspaces.conf + +# +# MY PROGRAMS# +# +$terminal = kitty +$fileManager = Thunar + +# +# AUTOSTART & ENVIRONMENT# +# +exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP +exec-once = dbus-update-activation-environment --systemd --all +exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP +exec-once = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' +exec-once = bash -c "wl-paste --watch cliphist store &" +exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 +exec-once = sleep 1 && dms run --config ~/.config/dms/ +exec-once = sleep 3 && dms ipc call wallpaper set "/usr/share/backgrounds/raveos/raveos-main-bg.jpeg" +exec-once = sleep 1 && /usr/lib/pam_kwallet_init +exec-once = /usr/lib/mate-polkit/polkit-mate-authentication-agent-1 + +# Theme & VM Fixes +env = XCURSOR_SIZE,24 +env = HYPRCURSOR_SIZE,24 +env = WLR_NO_HARDWARE_CURSORS,1 +env = WLR_RENDERER_ALLOW_SOFTWARE,1 +env = XDG_CURRENT_DESKTOP,Hyprland +env = XDG_SESSION_TYPE,wayland +env = XDG_SESSION_DESKTOP,Hyprland +env = GDK_BACKEND,wayland +env = QT_QPA_PLATFORM,wayland +env = QT_QPA_PLATFORMTHEME,qt6ct +env = QT_AUTO_SCREEN_SCALE_FACTOR,1 +env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1 +env = QT_STYLE_OVERRIDE,kvantum + +# +# LOOK AND FEEL# +# +general { + gaps_in = 5 + gaps_out = 2 + border_size = 2 + col.active_border = $primary + col.inactive_border = $outline + resize_on_border = true + layout = dwindle +} + +decoration { + rounding = 11 + active_opacity = 1.0 + inactive_opacity = 1.0 + shadow { + enabled = false + } + blur { + enabled = true + size = 3 + passes = 1 + vibrancy = 0.1696 + } +} + +animations { + enabled = yes + bezier = easeOutQuint,0.23,1,0.32,1 + animation = global, 1, 10, default + animation = windows, 1, 4.79, easeOutQuint + animation = layers, 1, 3.81, easeOutQuint + animation = workspaces, 1, 1.94, almostLinear, fade +} + +dwindle { + pseudotile = true + preserve_split = true +} + +master { + new_status = master +} + +misc { + force_default_wallpaper = 0 + disable_hyprland_logo = true +} + +input { + kb_layout = gb + follow_mouse = 1 + numlock_by_default = true +} + +cursor { + no_warps = true +} + +# +# KEYBINDINGS# +# +$mainMod = SUPER +bind = $mainMod, Q, killactive, +bind = $mainMod, M, exit, +bind = $mainMod, E, exec, nautilus +bind = $mainMod, V, togglefloating, +bind = $mainMod, P, pseudo, +bind = $mainMod, J, togglesplit, +bind = $mainMod, Return, exec, $terminal + +# 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 + [1-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 + +# Move active window to a workspace with mainMod + SHIFT + [0-9] +bind = $mainMod SHIFT, 1, movetoworkspace, 1 +bind = $mainMod SHIFT, 2, movetoworkspace, 2 + +# Shell Binds +bind = SUPER, SUPER_L, exec, dms ipc call spotlight toggle +bind = $mainMod, V, exec, dms ipc call clipboard toggle +bind = $mainMod, comma, exec, dms ipc call settings toggle +bind = $mainMod, N, exec, dms ipc call notifications toggle +bind = $mainMod SHIFT, N, exec, dms ipc call notepad toggle +bind = $mainMod, Y, exec, dms ipc call wallpaper next + +# Move/resize windows with mainMod + LMB/RMB and dragging +bindm = $mainMod, mouse:272, movewindow +bindm = $mainMod, mouse:273, resizewindow + +# Source remaining DMS configs +source = ./dms/cursor.conf +source = ./dms/layout.conf +source = ./dms/windowrules.conf |