loads of stuff but still not done yet
This commit is contained in:
1
modules/settings/animations.lua
Normal file
1
modules/settings/animations.lua
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
24
modules/settings/input.lua
Normal file
24
modules/settings/input.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
hl.config({
|
||||
input = {
|
||||
kb_layout = "gb",
|
||||
follow_mouse = 1,
|
||||
|
||||
touchpad = {
|
||||
natural_scroll = true,
|
||||
disable_while_typing = true,
|
||||
},
|
||||
|
||||
sensitivity = -0.3,
|
||||
force_no_accel = false,
|
||||
tablet = {
|
||||
left_handed = true,
|
||||
output = "current",
|
||||
},
|
||||
},
|
||||
cursor = {
|
||||
inactive_timeout = 2,
|
||||
warp_on_change_workspace = 1,
|
||||
hide_on_key_press = true,
|
||||
warp_on_toggle_special = 1,
|
||||
},
|
||||
})
|
||||
37
modules/settings/style.lua
Normal file
37
modules/settings/style.lua
Normal file
@@ -0,0 +1,37 @@
|
||||
local ctp = require("modules.mocha")
|
||||
hl.config({
|
||||
general = {
|
||||
gaps_in = 3,
|
||||
resize_on_border = true,
|
||||
gaps_out = { top = 5, right = 6, bottom = 6, left = 6 },
|
||||
border_size = 3,
|
||||
layout = "scrolling",
|
||||
col = {
|
||||
active_border = {
|
||||
colors = { "rgba(" .. ctp.mauve.hex:sub(2) .. "cc)", "rgba(" .. ctp.red.hex:sub(2) .. "cc)" },
|
||||
angle = 45,
|
||||
},
|
||||
inactive_border = {
|
||||
colors = { "rgba(" .. ctp.surface1.hex:sub(2) .. "cc)", "rgba(" .. ctp.lavender.hex:sub(2) .. "cc)" },
|
||||
angle = 45,
|
||||
},
|
||||
},
|
||||
},
|
||||
decoration = {
|
||||
rounding = 10,
|
||||
rounding_power = 2,
|
||||
|
||||
-- Change transparency of focused and unfocused windows
|
||||
active_opacity = 1.0,
|
||||
inactive_opacity = 0.8,
|
||||
dim_inactive = true,
|
||||
dim_strength = 0.2,
|
||||
|
||||
blur = {
|
||||
enabled = true,
|
||||
size = 2,
|
||||
passes = 3,
|
||||
vibrancy = 0.5,
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user