mirror of
https://git.aramjonghu.nl/AramJonghu/hypr.git
synced 2026-06-08 14:18:24 +02:00
Compare commits
27 Commits
de39793c8e
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
b55ca1a236
|
|||
| e37c8498c9 | |||
| 33a73988f2 | |||
| 583f488a93 | |||
| 20dcb8c78b | |||
| 7687216864 | |||
| 36192f6c79 | |||
| 7329ef4b4b | |||
| 9816836f6e | |||
| 00cf7b80f5 | |||
| 8b340778fe | |||
| e3b98ff832 | |||
| 4e4484b9fc | |||
| 935044cfb1 | |||
| 5506a79667 | |||
| 845d28c6a1 | |||
| 77479b9043 | |||
| 3cd4504e1c | |||
| 7af1f7b0fc | |||
| defaaaed37 | |||
| 9ab5e171ac | |||
| a144bca41e | |||
| 4a431bfe9b | |||
| e3986402bd | |||
| f486733186 | |||
| de18797bfa | |||
| 7e3cf6797a |
+9
-3
@@ -1,6 +1,7 @@
|
|||||||
hl.bind("SUPER + mouse:272", hl.dsp.window.drag(), { mouse = true })
|
hl.bind("SUPER + mouse:272", hl.dsp.window.drag(), { mouse = true })
|
||||||
hl.bind("SUPER + mouse:273", hl.dsp.window.resize(), { mouse = true })
|
hl.bind("SUPER + mouse:273", hl.dsp.window.resize(), { mouse = true })
|
||||||
|
|
||||||
|
hl.bind("SUPER + S", hl.dsp.window.float())
|
||||||
hl.bind("SUPER + Q", hl.dsp.window.close())
|
hl.bind("SUPER + Q", hl.dsp.window.close())
|
||||||
hl.bind("SUPER + M", hl.dsp.exit())
|
hl.bind("SUPER + M", hl.dsp.exit())
|
||||||
hl.bind("SUPER + RETURN", hl.dsp.exec_cmd("ghostty"))
|
hl.bind("SUPER + RETURN", hl.dsp.exec_cmd("ghostty"))
|
||||||
@@ -40,13 +41,18 @@ 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(
|
||||||
|
"code:192",
|
||||||
|
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"),
|
||||||
|
{ 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 })
|
||||||
hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true })
|
hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true })
|
||||||
hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd("brighnessctl set +5%"), { locked = true, repeating = true })
|
|
||||||
hl.bind("XF86MonBrightnessDown", hl.dsp.exec_cmd("brighnessctl set -5%"), { locked = true, repeating = true })
|
|
||||||
hl.bind("XF86WebCam", hl.dsp.exec_cmd(""), { locked = true, repeating = true })
|
|
||||||
|
|
||||||
hl.bind("PRINT", hl.dsp.global("zshell:screenshotFreeze"))
|
hl.bind("PRINT", hl.dsp.global("zshell:screenshotFreeze"))
|
||||||
hl.bind("SUPER + R", hl.dsp.global("zshell:toggle-launcher"))
|
hl.bind("SUPER + R", hl.dsp.global("zshell:toggle-launcher"))
|
||||||
|
|||||||
+9
-6
@@ -5,7 +5,7 @@ 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-light-cursors")
|
||||||
hl.env("HYPRCURSOR_SIZE","28")
|
hl.env("HYPRCURSOR_SIZE", "24")
|
||||||
|
|
||||||
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,11 +19,14 @@ 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/aram/.config")
|
hl.env("XDG_CONFIG_HOME", "/home/koyomi/.config")
|
||||||
hl.env("XDG_CACHE_HOME","/home/aram/.cache")
|
hl.env("XDG_CACHE_HOME", "/home/koyomi/.cache")
|
||||||
hl.env("XDG_DATA_HOME","/home/aram/.local/share")
|
hl.env("XDG_DATA_HOME", "/home/koyomi/.local/share")
|
||||||
hl.env("XDG_PICTRES_HOME","/home/aram/Pictures")
|
hl.env("XDG_PICTRES_HOME", "/home/koyomi/Pictures")
|
||||||
hl.env("HYPRSHOT_DIR","/home/aram/Pictures/Screenshots")
|
hl.env("HYPRSHOT_DIR", "/home/koyomi/Pictures/Screenshots")
|
||||||
|
|
||||||
hl.env("RUSTICL_ENABLE", "radeonsi")
|
hl.env("RUSTICL_ENABLE", "radeonsi")
|
||||||
hl.env("AMD_VULKAN_ICD", "RADV")
|
hl.env("AMD_VULKAN_ICD", "RADV")
|
||||||
|
|
||||||
|
hl.env("HSA_OVERRIDE_GFX_VERSION", "12.0.1")
|
||||||
|
hl.env("HCC_AMDGPU_TARGET", "gfx1201")
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
hl.monitor({
|
hl.monitor({
|
||||||
output = "eDP-1",
|
output = "DP-2",
|
||||||
mode = "2560x1600@60",
|
mode = "2560x1440@240",
|
||||||
position = "0x0",
|
position = "1728x0",
|
||||||
scale = 1.25,
|
scale = 1,
|
||||||
bitdepth = 10,
|
bitdepth = 10,
|
||||||
cm = "srgb",
|
cm = "srgb",
|
||||||
})
|
})
|
||||||
|
|
||||||
hl.monitor({
|
hl.monitor({
|
||||||
output = "",
|
output = "DP-3",
|
||||||
mode = "highres@highrr",
|
mode = "3840x2160@60",
|
||||||
position = "auto",
|
position = "0x0",
|
||||||
scale = 2,
|
scale = 1.25,
|
||||||
bitdepth = 10,
|
bitdepth = 10,
|
||||||
cm = "srgb",
|
cm = "srgb",
|
||||||
mirror = "eDP-1"
|
transform = 1,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -22,13 +22,6 @@ hl.config({
|
|||||||
sensitivity = 0,
|
sensitivity = 0,
|
||||||
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 = {
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
general = {
|
general = {
|
||||||
gaps_in = 2,
|
gaps_in = 2,
|
||||||
|
|||||||
Reference in New Issue
Block a user