aboutsummaryrefslogtreecommitdiff
path: root/hypr/hyprland.lua
blob: e17b7db677ba229020d8d99284ea3264d78dbb9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
  }
})