diff options
| author | Blaster4385 <[email protected]> | 2026-05-15 23:28:20 +0530 |
|---|---|---|
| committer | Blaster4385 <[email protected]> | 2026-05-18 16:52:47 +0530 |
| commit | f826256c010c0e5c8c2bd64adb1fae1c3f399717 (patch) | |
| tree | 194e7c15f0903b073d2db3dcae6aa09651341a85 /hypr/hyprland.lua | |
| parent | 8b254a730b26a40ef2d2ccf0881075a6719b6712 (diff) | |
Diffstat (limited to 'hypr/hyprland.lua')
| -rw-r--r-- | hypr/hyprland.lua | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/hypr/hyprland.lua b/hypr/hyprland.lua new file mode 100644 index 0000000..e17b7db --- /dev/null +++ b/hypr/hyprland.lua @@ -0,0 +1,40 @@ +require("configs.animations") +require("configs.autostart") +require("configs.decorations") +require("configs.input") +require("configs.keybinds") +require("configs.monitors") +require("configs.plugins") +require("configs.windows") +require("configs.workspaces") + +hl.config({ + general = { + gaps_in = 15, + gaps_out = 30, + border_size = 2, + resize_on_border = false, + allow_tearing = false, + layout = "hy3", + col = { + active_border = "rgba(ebdbb280)", + inactive_border = "rgba(a8998480)", + } + }, + + render = { + send_content_type = true, + non_shader_cm = 2 + }, + + xwayland = { + force_zero_scaling = true + }, + + misc = { + force_default_wallpaper = 0, + disable_hyprland_logo = true, + vrr = 2, + middle_click_paste = false + } +}) |