aboutsummaryrefslogtreecommitdiff
path: root/hypr/hyprland.lua
diff options
context:
space:
mode:
Diffstat (limited to 'hypr/hyprland.lua')
-rw-r--r--hypr/hyprland.lua40
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
+ }
+})