mirror of
https://git.aramjonghu.dev/AramJonghu/hypr.git
synced 2026-09-04 16:53:30 +02:00
Compare commits
39
Commits
42e873a158
..
laptop
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
33d904ebb8
|
||
|
|
6f2d9f8fd4
|
||
|
|
2a618cd647
|
||
|
|
4c2129b1c1
|
||
|
|
7e60b85287
|
||
|
|
002fbc7f45
|
||
|
|
01d3d40ee1 | ||
|
|
9c90723d41 | ||
|
|
09d61f4258 | ||
|
|
18e3dbf57e | ||
|
|
e64cc22cb8 | ||
|
|
3d61c5a9d0 | ||
|
|
b820d8b10f | ||
|
|
f8786cc8a5 | ||
|
|
0053de6c2b | ||
|
|
0b1d0da473 | ||
|
|
d7badae993 | ||
|
|
09f35815c8 | ||
|
|
1041a244ac | ||
|
|
45deaad2fe | ||
|
|
7f2285f130 | ||
|
|
5e75cc6246 | ||
|
|
c09cb6c791 | ||
|
|
4974633751 | ||
|
|
ed63bdebe1 | ||
|
|
6e9a453c76 | ||
|
|
e6089354e4 | ||
|
|
411fc0f0bb | ||
|
|
6fc558ed2f | ||
|
|
d608462b94 | ||
|
|
cbba6c9afe | ||
|
|
b40e1f5d5a | ||
|
|
e0182aff29 | ||
|
|
cb8eedb914 | ||
|
|
2a19c051c3 | ||
|
|
2d4c1f09fc | ||
|
|
de44ac857d | ||
|
|
cfd4f28171 | ||
|
|
6be730fdaa |
+22
-4
@@ -41,14 +41,12 @@ hl.bind(
|
|||||||
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"),
|
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"),
|
||||||
{ repeating = true, locked = true }
|
{ repeating = true, locked = true }
|
||||||
)
|
)
|
||||||
|
|
||||||
hl.bind(
|
hl.bind(
|
||||||
"code:192",
|
"XF86AudioMicMute",
|
||||||
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"),
|
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"),
|
||||||
{ repeating = true, locked = true }
|
{ repeating = true, locked = true }
|
||||||
)
|
)
|
||||||
hl.bind("code:193", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"), { repeating = true, locked = true })
|
|
||||||
hl.bind("code:194", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SOURCE@ 5%-"), { repeating = true, locked = true })
|
|
||||||
hl.bind("code:195", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SOURCE@ 5%+"), { repeating = true, locked = true })
|
|
||||||
|
|
||||||
hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
|
hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
|
||||||
hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
|
hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
|
||||||
@@ -60,3 +58,23 @@ hl.bind("SUPER + A", hl.dsp.global("zshell:toggle-nc"))
|
|||||||
hl.bind("SUPER + V", hl.dsp.global("zshell:toggle-drawing"))
|
hl.bind("SUPER + V", hl.dsp.global("zshell:toggle-drawing"))
|
||||||
hl.bind("SUPER + F1", hl.dsp.global("zshell:lock"))
|
hl.bind("SUPER + F1", hl.dsp.global("zshell:lock"))
|
||||||
hl.bind("SUPER + F2", hl.dsp.global("zshell:toggle-settings"))
|
hl.bind("SUPER + F2", hl.dsp.global("zshell:toggle-settings"))
|
||||||
|
hl.bind("XF86MonBrightnessUp", hl.dsp.global("zshell:brightnessUp"), { locked = true, repeating = true })
|
||||||
|
hl.bind("XF86MonBrightnessDown", hl.dsp.global("zshell:brightnessDown"), { locked = true, repeating = true })
|
||||||
|
|
||||||
|
hl.bind("SUPER + T", function()
|
||||||
|
local m = hl.get_monitor("eDP-1")
|
||||||
|
if m == nil then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local t = m.transform == 0 and 1 or 0
|
||||||
|
hl.monitor({
|
||||||
|
output = "eDP-1",
|
||||||
|
mode = "2880x1800@120",
|
||||||
|
position = "0x0",
|
||||||
|
scale = 1.125,
|
||||||
|
bitdepth = 10,
|
||||||
|
cm = "srgb",
|
||||||
|
transform = t,
|
||||||
|
})
|
||||||
|
hl.config({ input = { touchdevice = { transform = t }, tablet = { transform = t } } })
|
||||||
|
end)
|
||||||
|
|||||||
+7
-13
@@ -4,8 +4,8 @@ hl.env("TERM", "tmux-256color")
|
|||||||
hl.env("VISUAL", "nvim")
|
hl.env("VISUAL", "nvim")
|
||||||
hl.env("EDITOR", "nvim")
|
hl.env("EDITOR", "nvim")
|
||||||
|
|
||||||
hl.env("HYPRCURSOR_THEME", "catppuccin-macchiato-light-cursors")
|
hl.env("HYPRCURSOR_THEME", "catppuccin-macchiato-dark-cursors")
|
||||||
hl.env("HYPRCURSOR_SIZE", "24")
|
hl.env("HYPRCURSOR_SIZE", "32")
|
||||||
|
|
||||||
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "auto")
|
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "auto")
|
||||||
hl.env("QT_AUTO_SCREEN_SCALE_FACTOR", "1")
|
hl.env("QT_AUTO_SCREEN_SCALE_FACTOR", "1")
|
||||||
@@ -19,16 +19,10 @@ hl.env("CLUTTER_BACKEND", "wayland")
|
|||||||
hl.env("GDK_BACKEND", "wayland")
|
hl.env("GDK_BACKEND", "wayland")
|
||||||
hl.env("SDL_VIDEODRIVER", "wayland")
|
hl.env("SDL_VIDEODRIVER", "wayland")
|
||||||
|
|
||||||
hl.env("XDG_CONFIG_HOME", "/home/koyomi/.config")
|
hl.env("XDG_CONFIG_HOME", "/home/aram/.config")
|
||||||
hl.env("XDG_CACHE_HOME", "/home/koyomi/.cache")
|
hl.env("XDG_CACHE_HOME", "/home/aram/.cache")
|
||||||
hl.env("XDG_DATA_HOME", "/home/koyomi/.local/share")
|
hl.env("XDG_DATA_HOME", "/home/aram/.local/share")
|
||||||
hl.env("XDG_PICTRES_HOME", "/home/koyomi/Pictures")
|
hl.env("XDG_PICTRES_HOME", "/home/aram/Pictures")
|
||||||
hl.env("HYPRSHOT_DIR", "/home/koyomi/Pictures/Screenshots")
|
hl.env("HYPRSHOT_DIR", "/home/aram/Pictures/Screenshots")
|
||||||
|
|
||||||
hl.env("RUSTICL_ENABLE", "radeonsi")
|
|
||||||
hl.env("AMD_VULKAN_ICD", "RADV")
|
|
||||||
|
|
||||||
hl.env("HSA_OVERRIDE_GFX_VERSION", "12.0.1")
|
|
||||||
hl.env("HCC_AMDGPU_TARGET", "gfx1201")
|
|
||||||
|
|
||||||
hl.env("DBUS_SESSION_BUS_ADDRESS", "unix:path=/run/user/1000/bus")
|
hl.env("DBUS_SESSION_BUS_ADDRESS", "unix:path=/run/user/1000/bus")
|
||||||
|
|||||||
+10
-2
@@ -1,11 +1,19 @@
|
|||||||
hl.on("hyprland.start", function()
|
hl.on("hyprland.start", function()
|
||||||
hl.exec_cmd("zshell-cli shell start")
|
hl.exec_cmd("zshell-cli shell start")
|
||||||
hl.exec_cmd("nm-applet")
|
hl.exec_cmd("nm-applet")
|
||||||
|
hl.exec_cmd("blueman-applet")
|
||||||
hl.exec_cmd("fcitx5")
|
hl.exec_cmd("fcitx5")
|
||||||
hl.exec_cmd("blueman-applet")
|
|
||||||
hl.exec_cmd("wl-paste --type text --watch cliphist store")
|
hl.exec_cmd("wl-paste --type text --watch cliphist store")
|
||||||
hl.exec_cmd("wl-paste --type image --watch cliphist store")
|
hl.exec_cmd("wl-paste --type image --watch cliphist store")
|
||||||
hl.exec_cmd("hyprsunset -i")
|
hl.exec_cmd("hyprsunset -i")
|
||||||
hl.exec_cmd("nextcloud --background")
|
|
||||||
hl.exec_cmd("ksecretd")
|
hl.exec_cmd("ksecretd")
|
||||||
|
hl.exec_cmd("nextcloud --background")
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
local time = tonumber(os.date("%H"))
|
||||||
|
|
||||||
|
if time < 22 and time > 8 then
|
||||||
|
hl.exec_cmd("brightnessctl s 100%")
|
||||||
|
else
|
||||||
|
hl.exec_cmd("brightnessctl s 5%")
|
||||||
|
end
|
||||||
|
|||||||
+9
-10
@@ -1,19 +1,18 @@
|
|||||||
hl.monitor({
|
hl.monitor({
|
||||||
output = "DP-1",
|
output = "eDP-1",
|
||||||
mode = "2560x1440@240",
|
mode = "preferred@120",
|
||||||
position = "auto-left",
|
position = "auto",
|
||||||
scale = 1,
|
scale = 1.125,
|
||||||
bitdepth = 10,
|
bitdepth = 10,
|
||||||
cm = "srgb",
|
cm = "srgb",
|
||||||
vrr = 0,
|
|
||||||
})
|
})
|
||||||
|
|
||||||
hl.monitor({
|
hl.monitor({
|
||||||
output = "DP-2",
|
output = "",
|
||||||
mode = "preffered",
|
-- mirror = "eDP-1",
|
||||||
position = "auto-right",
|
mode = "preferred",
|
||||||
scale = 1.25,
|
position = "auto",
|
||||||
|
scale = 1,
|
||||||
bitdepth = 10,
|
bitdepth = 10,
|
||||||
cm = "srgb",
|
cm = "srgb",
|
||||||
transform = 3,
|
|
||||||
})
|
})
|
||||||
|
|||||||
+95
-32
@@ -14,28 +14,38 @@ hl.layer_rule({
|
|||||||
ignore_alpha = 0.5,
|
ignore_alpha = 0.5,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
hl.gesture = { fingers = 3, direction = "horizontal", action = "workspace" }
|
||||||
|
|
||||||
hl.config({
|
hl.config({
|
||||||
input = {
|
input = {
|
||||||
kb_layout = "us",
|
kb_layout = "us",
|
||||||
kb_variant = "intl",
|
kb_variant = "intl",
|
||||||
kb_options = "fkeys:basic_13-24",
|
kb_options = "fkeys:basic_13-24",
|
||||||
sensitivity = 0,
|
sensitivity = 0.4,
|
||||||
accel_profile = "flat",
|
accel_profile = "flat",
|
||||||
follow_mouse = 1,
|
follow_mouse = 1,
|
||||||
|
touchpad = {
|
||||||
|
natural_scroll = true,
|
||||||
|
scroll_factor = 0.4,
|
||||||
|
middle_button_emulation = true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
gestures = { workspace_swipe_touch = true },
|
||||||
general = {
|
general = {
|
||||||
gaps_in = 2,
|
gaps_in = 2,
|
||||||
gaps_out = 2,
|
gaps_out = 2,
|
||||||
border_size = 2,
|
border_size = 2,
|
||||||
col = {
|
col = {
|
||||||
active_border = {
|
active_border = {
|
||||||
colors = { C.colors.mauveAlpha, C.colors.greenAlpha, C.colors.sapphireAlpha, C.colors.lavenderAlpha },
|
colors = {
|
||||||
angle = 90,
|
C.colors.mauveAlpha,
|
||||||
},
|
C.colors.greenAlpha,
|
||||||
inactive_border = {
|
C.colors.sapphireAlpha,
|
||||||
colors = { C.colors.surface1Alpha },
|
C.colors.lavenderAlpha,
|
||||||
|
},
|
||||||
angle = 90,
|
angle = 90,
|
||||||
},
|
},
|
||||||
|
inactive_border = { colors = { C.colors.surface1Alpha }, angle = 90 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
decoration = {
|
decoration = {
|
||||||
@@ -63,48 +73,101 @@ hl.config({
|
|||||||
input_methods = true,
|
input_methods = true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
ecosystem = {
|
ecosystem = { no_donation_nag = true, no_update_news = true },
|
||||||
no_donation_nag = true,
|
misc = { disable_hyprland_logo = true },
|
||||||
no_update_news = true,
|
debug = { full_cm_proto = true },
|
||||||
},
|
dwindle = { preserve_split = true },
|
||||||
misc = {
|
|
||||||
disable_hyprland_logo = true,
|
|
||||||
},
|
|
||||||
debug = {
|
|
||||||
full_cm_proto = true,
|
|
||||||
},
|
|
||||||
dwindle = {
|
|
||||||
preserve_split = true,
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
|
|
||||||
local animations = {
|
local animations = {
|
||||||
{ leaf = "border", enabled = true, speed = 4, bezier = "linear" },
|
{ leaf = "border", enabled = true, speed = 4, bezier = "linear" },
|
||||||
{ leaf = "borderangle", enabled = false, speed = 3, bezier = "linear", style = "loop" },
|
{
|
||||||
|
leaf = "borderangle",
|
||||||
|
enabled = false,
|
||||||
|
speed = 3,
|
||||||
|
bezier = "linear",
|
||||||
|
style = "loop",
|
||||||
|
},
|
||||||
{ leaf = "fadeOut", enabled = true, speed = 3, bezier = "default" },
|
{ leaf = "fadeOut", enabled = true, speed = 3, bezier = "default" },
|
||||||
{ leaf = "fadeIn", enabled = true, speed = 4, bezier = "default" },
|
{ leaf = "fadeIn", enabled = true, speed = 4, bezier = "default" },
|
||||||
{ leaf = "fadeLayers", enabled = true, speed = 1, bezier = "default" },
|
{ leaf = "fadeLayers", enabled = true, speed = 1, bezier = "default" },
|
||||||
{ leaf = "fadePopups", enabled = true, speed = 1, bezier = "default" },
|
{ leaf = "fadePopups", enabled = true, speed = 1, bezier = "default" },
|
||||||
{ leaf = "global", enabled = true, speed = 6, bezier = "default" },
|
{ leaf = "global", enabled = true, speed = 6, bezier = "default" },
|
||||||
{ leaf = "layers", enabled = true, speed = 5, bezier = "cubic-bezier", style = "fade" },
|
{
|
||||||
{ leaf = "windows", enabled = true, speed = 3, bezier = "wind", style = "popin" },
|
leaf = "layers",
|
||||||
{ leaf = "windowsIn", enabled = true, speed = 3, bezier = "winIn", style = "popin 90%" },
|
enabled = true,
|
||||||
{ leaf = "windowsOut", enabled = true, speed = 3, bezier = "winOut", style = "popin 90%" },
|
speed = 5,
|
||||||
{ leaf = "windowsMove", enabled = true, speed = 1, bezier = "wind", style = "slide" },
|
bezier = "cubic-bezier",
|
||||||
|
style = "fade",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
leaf = "windows",
|
||||||
|
enabled = true,
|
||||||
|
speed = 3,
|
||||||
|
bezier = "wind",
|
||||||
|
style = "popin",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
leaf = "windowsIn",
|
||||||
|
enabled = true,
|
||||||
|
speed = 3,
|
||||||
|
bezier = "winIn",
|
||||||
|
style = "popin 90%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
leaf = "windowsOut",
|
||||||
|
enabled = true,
|
||||||
|
speed = 3,
|
||||||
|
bezier = "winOut",
|
||||||
|
style = "popin 90%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
leaf = "windowsMove",
|
||||||
|
enabled = true,
|
||||||
|
speed = 1,
|
||||||
|
bezier = "wind",
|
||||||
|
style = "slide",
|
||||||
|
},
|
||||||
{ leaf = "workspaces", enabled = true, speed = 4, bezier = "default" },
|
{ leaf = "workspaces", enabled = true, speed = 4, bezier = "default" },
|
||||||
}
|
}
|
||||||
|
|
||||||
local curves = {
|
local curves = {
|
||||||
{ name = "wind", config = { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1 } } } },
|
{
|
||||||
{ name = "winIn", config = { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1 } } } },
|
name = "wind",
|
||||||
|
config = { type = "bezier", points = { { 0.05, 0.9 }, { 0.1, 1 } } },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "winIn",
|
||||||
|
config = { type = "bezier", points = { { 0.1, 1.0 }, { 0.1, 1 } } },
|
||||||
|
},
|
||||||
{ name = "winOut", config = { type = "bezier", points = { { 1, 0.35 }, { 1, 1 } } } },
|
{ name = "winOut", config = { type = "bezier", points = { { 1, 0.35 }, { 1, 1 } } } },
|
||||||
{ name = "linear", config = { type = "bezier", points = { { 1, 1 }, { 1, 1 } } } },
|
{ name = "linear", config = { type = "bezier", points = { { 1, 1 }, { 1, 1 } } } },
|
||||||
{ name = "cubic-bezier", config = { type = "bezier", points = { { 0.215, 0.61 }, { 0.355, 1 } } } },
|
{
|
||||||
{ name = "easeOutQuint", config = { type = "bezier", points = { { 0.23, 1 }, { 0.32, 1 } } } },
|
name = "cubic-bezier",
|
||||||
{ name = "easeInOutCubic", config = { type = "bezier", points = { { 0.65, 0.05 }, { 0.36, 1 } } } },
|
config = { type = "bezier", points = { { 0.215, 0.61 }, { 0.355, 1 } } },
|
||||||
{ name = "almostLinear", config = { type = "bezier", points = { { 0.5, 0.5 }, { 0.75, 1 } } } },
|
},
|
||||||
|
{
|
||||||
|
name = "easeOutQuint",
|
||||||
|
config = { type = "bezier", points = { { 0.23, 1 }, { 0.32, 1 } } },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "easeInOutCubic",
|
||||||
|
config = { type = "bezier", points = { { 0.65, 0.05 }, { 0.36, 1 } } },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "almostLinear",
|
||||||
|
config = { type = "bezier", points = { { 0.5, 0.5 }, { 0.75, 1 } } },
|
||||||
|
},
|
||||||
{ name = "quick", config = { type = "bezier", points = { { 0.15, 0 }, { 0.1, 1 } } } },
|
{ name = "quick", config = { type = "bezier", points = { { 0.15, 0 }, { 0.1, 1 } } } },
|
||||||
{ name = "easy", config = { type = "spring", mass = 1, stiffness = 71.2633, dampening = 15.8273644 } },
|
{
|
||||||
|
name = "easy",
|
||||||
|
config = {
|
||||||
|
type = "spring",
|
||||||
|
mass = 1,
|
||||||
|
stiffness = 71.2633,
|
||||||
|
dampening = 15.8273644,
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, curve in ipairs(curves) do
|
for _, curve in ipairs(curves) do
|
||||||
|
|||||||
Reference in New Issue
Block a user