aboutsummaryrefslogtreecommitdiff
path: root/.config/hypr/visual.lua
blob: b8ed8d55d125d8260bd8a54f48a0b4e6388a2376 (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
-----------------------
---- LOOK AND FEEL ----
-----------------------
-- https://wiki.hypr.land/Configuring/Basics/Variables/

hl.config({
    general = {
        gaps_in  = 2,
        gaps_out = 2,
        border_size = 2,
        col = {
            active_border   = "rgba(ef934dff)",
            inactive_border = "rgba(3b403cff)",
        },
        resize_on_border = false,
        -- https://wiki.hypr.land/Configuring/Advanced-and-Cool/Tearing/
        allow_tearing = false,
        layout = "master",
    },

    decoration = {
        rounding = 0,
        shadow = { enabled = false, },
        blur = { enabled = false, },
    },

    animations = { enabled = false, },

    misc = {
        force_default_wallpaper = 0,
        disable_hyprland_logo   = true,
    },
})