idek atp
This commit is contained in:
@@ -80,14 +80,14 @@ hl.animation({
|
|||||||
enabled = true,
|
enabled = true,
|
||||||
speed = 3,
|
speed = 3,
|
||||||
bezier = "easeOut",
|
bezier = "easeOut",
|
||||||
style = "slidefade 15%"
|
style = "slide"
|
||||||
})
|
})
|
||||||
hl.animation({
|
hl.animation({
|
||||||
leaf = "specialWorkspace",
|
leaf = "specialWorkspace",
|
||||||
enabled = true,
|
enabled = true,
|
||||||
speed = 3,
|
speed = 3,
|
||||||
bezier = "easeOut",
|
bezier = "easeOut",
|
||||||
style = "slidefadevert 10%"
|
style = "slidevert 15%"
|
||||||
})
|
})
|
||||||
hl.animation({
|
hl.animation({
|
||||||
leaf = "zoomFactor",
|
leaf = "zoomFactor",
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ local function focus_window(n)
|
|||||||
local window = select_window(n)
|
local window = select_window(n)
|
||||||
if window ~= nil then
|
if window ~= nil then
|
||||||
hl.dispatch(hl.dsp.focus({window = window}))
|
hl.dispatch(hl.dsp.focus({window = window}))
|
||||||
|
hl.dispatch(hl.dsp.window.alter_zorder({mode = 'top', window = window}))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ hl.config({
|
|||||||
repeat_delay = 600,
|
repeat_delay = 600,
|
||||||
touchpad = {
|
touchpad = {
|
||||||
natural_scroll = true
|
natural_scroll = true
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
general = {
|
general = {
|
||||||
gaps_in = 2,
|
gaps_in = 2,
|
||||||
@@ -18,18 +18,18 @@ hl.config({
|
|||||||
decoration = {
|
decoration = {
|
||||||
rounding = 12,
|
rounding = 12,
|
||||||
rounding_power = 3,
|
rounding_power = 3,
|
||||||
-- active_opacity = 0.95,
|
-- active_opacity = 0.9,
|
||||||
-- inactive_opacity = 0.9,
|
-- inactive_opacity = 0.9,
|
||||||
-- fullscreen_opacity = 1.0,
|
-- fullscreen_opacity = 1.0,
|
||||||
dim_special = 0,
|
dim_special = 0,
|
||||||
blur = {
|
blur = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
size = 2,
|
size = 4,
|
||||||
passes = 3,
|
passes = 3,
|
||||||
new_optimizations = true,
|
new_optimizations = true,
|
||||||
ignore_opacity = true,
|
ignore_opacity = true,
|
||||||
special = false,
|
special = true,
|
||||||
brightness = 1,
|
brightness = 0.8,
|
||||||
},
|
},
|
||||||
shadow = {
|
shadow = {
|
||||||
range = 12,
|
range = 12,
|
||||||
|
|||||||
38
hypr/hyprland/hardware/hummingbird.lua
Normal file
38
hypr/hyprland/hardware/hummingbird.lua
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
hl.config({
|
||||||
|
input = {
|
||||||
|
accel_profile = "flat",
|
||||||
|
sensitivity = 0,
|
||||||
|
follow_mouse = 2,
|
||||||
|
float_switch_override_focus = 0,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.device({
|
||||||
|
name = "tpps/2-elan-trackpoint",
|
||||||
|
sensitivity = 0.5,
|
||||||
|
enabled = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.device({
|
||||||
|
name = "elan067b:00-04f3:31f8-mouse",
|
||||||
|
sensitivity = 0.5,
|
||||||
|
enabled = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.device({
|
||||||
|
name = "pixart-hp-usb-optical-mouse",
|
||||||
|
enabled = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.monitor({
|
||||||
|
output = "eDP-1",
|
||||||
|
mode = "preferred",
|
||||||
|
scale = 1
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.monitor({
|
||||||
|
output = "",
|
||||||
|
mode = "preferred",
|
||||||
|
position = "auto",
|
||||||
|
scale = 1
|
||||||
|
})
|
||||||
@@ -5,8 +5,19 @@ if hl.plugin.gloview ~= nil then
|
|||||||
blur = 1,
|
blur = 1,
|
||||||
strip_all_card = true,
|
strip_all_card = true,
|
||||||
show_special = true,
|
show_special = true,
|
||||||
above_namespaces = 'quickshell'
|
above_namespaces = 'quickshell',
|
||||||
|
key_close = 'v',
|
||||||
|
key_next_workspace = 'l',
|
||||||
|
key_prev_workspace = 'k',
|
||||||
|
show_empty = true,
|
||||||
|
dynamic_workspaces = false,
|
||||||
}
|
}
|
||||||
}})
|
}})
|
||||||
hl.bind('SUPER + K', hl.plugin.gloview.toggle, {submap_universal = true})
|
hl.bind('SUPER + K', hl.plugin.gloview.toggle, {submap_universal = true})
|
||||||
|
elseif hl.plugin.hyprexpo ~= nil then
|
||||||
|
hl.config({
|
||||||
|
hyprexpo = {
|
||||||
|
},
|
||||||
|
})
|
||||||
|
hl.bind('SUPER + K', function() hl.plugin.hyprexpo.expo('toggle') end)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,10 +1,5 @@
|
|||||||
require('config.lazy')
|
require('config.lazy')
|
||||||
|
|
||||||
local cd = io.open("/tmp/fishwd", "r")
|
|
||||||
if cd ~= nil then
|
|
||||||
vim.cmd("cd " .. cd:read("a"))
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.lsp.enable({
|
vim.lsp.enable({
|
||||||
"rust_analyzer",
|
"rust_analyzer",
|
||||||
"jdtls",
|
"jdtls",
|
||||||
|
|||||||
Reference in New Issue
Block a user