Compare commits

..
25 Commits
Author SHA1 Message Date
AramJonghu 33a73988f2 blur enabled and stylua 2026-05-14 13:39:27 +02:00
AramJonghu 583f488a93 lua update is great 2026-05-14 13:16:18 +02:00
AramJonghu 20dcb8c78b border animation 2026-05-12 00:22:14 +02:00
AramJonghu 7687216864 executes 2026-05-12 00:21:34 +02:00
Aram Markarov 36192f6c79 Merge pull request 'master-lua-convertion' (#2) from master-lua-convertion into master
Reviewed-on: https://git.aramjonghu.nl/AramJonghu/hypr/pulls/2
2026-05-11 22:56:43 +02:00
AramJonghu 7329ef4b4b Conversion complete! 2026-05-11 22:56:00 +02:00
AramJonghu 9816836f6e temp update 2026-05-11 21:34:12 +02:00
AramJonghu 00cf7b80f5 minor adjustments for lua conversion 2026-05-08 00:15:55 +02:00
AramJonghu 8b340778fe global -> cmd 2026-05-07 23:20:48 +02:00
AramJonghu e3b98ff832 exec-once 2026-05-07 15:18:47 +02:00
AramJonghu 4e4484b9fc foot -> ghostty with start minimized 2026-05-06 17:41:34 +02:00
AramJonghu 935044cfb1 foot -> ghostty 2026-05-06 17:26:44 +02:00
AramJonghu 5506a79667 initial setup for hyprlang -> lua 2026-05-04 19:53:56 +02:00
AramJonghu 845d28c6a1 removal of shadows and blur (temporary) 2026-05-04 16:51:29 +02:00
AramJonghu 77479b9043 reduced shadow and changed inactive border 2026-04-29 00:51:26 +02:00
AramJonghu 3cd4504e1c less blur 2026-04-26 14:36:09 +02:00
Aram Markarov 7af1f7b0fc Merge pull request 'no-uwsm-desktop' (#1) from no-uwsm-desktop into master
Reviewed-on: https://git.aramjonghu.nl/AramJonghu/hypr/pulls/1
2026-04-26 00:49:21 +02:00
AramJonghu defaaaed37 ollama rocm env variables 2026-04-09 21:09:08 +02:00
AramJonghu 9ab5e171ac less launch on boot 2026-04-09 00:44:47 +02:00
AramJonghu a144bca41e zshell 2026-04-07 23:42:40 +02:00
AramJonghu 4a431bfe9b zshell 2026-04-06 22:07:09 +02:00
AramJonghu e3986402bd 06/04 2026-04-06 21:13:40 +02:00
AramJonghu f486733186 05/04 2026-04-05 23:39:30 +02:00
AramJonghu de18797bfa blur cuz cool 2026-04-05 14:57:09 +02:00
AramJonghu 7e3cf6797a settings 2026-04-03 23:28:12 +02:00
5 changed files with 60 additions and 85 deletions
+5 -24
View File
@@ -1,12 +1,11 @@
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 + S", hl.dsp.window.float())
hl.bind("SUPER + Q", hl.dsp.window.close())
hl.bind("SUPER + M", hl.dsp.exit())
hl.bind("SUPER + RETURN", hl.dsp.exec_cmd("ghostty"))
hl.bind("SUPER + E", hl.dsp.exec_cmd("dolphin"))
hl.bind("SUPER + B", hl.dsp.exec_cmd("chromium"))
hl.bind("SUPER + B", hl.dsp.exec_cmd("firefox"))
hl.bind("SUPER + H", hl.dsp.focus({ direction = "l" }))
hl.bind("SUPER + L", hl.dsp.focus({ direction = "r" }))
@@ -41,12 +40,14 @@ hl.bind(
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"),
{ repeating = true, locked = true }
)
hl.bind(
"XF86AudioMicMute",
"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("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
@@ -58,23 +59,3 @@ hl.bind("SUPER + A", hl.dsp.global("zshell:toggle-nc"))
hl.bind("SUPER + V", hl.dsp.global("zshell:toggle-drawing"))
hl.bind("SUPER + F1", hl.dsp.global("zshell:lock"))
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)
+13 -9
View File
@@ -1,11 +1,11 @@
hl.env("ZSH", "/usr/share/oh-my-zsh/")
hl.env("BROWSER", "chromium")
hl.env("BROWSER", "firefox")
hl.env("TERM", "tmux-256color")
hl.env("VISUAL", "nvim")
hl.env("EDITOR", "nvim")
hl.env("HYPRCURSOR_THEME", "catppuccin-macchiato-dark-cursors")
hl.env("HYPRCURSOR_SIZE", "32")
hl.env("HYPRCURSOR_THEME", "catppuccin-macchiato-light-cursors")
hl.env("HYPRCURSOR_SIZE", "24")
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "auto")
hl.env("QT_AUTO_SCREEN_SCALE_FACTOR", "1")
@@ -19,10 +19,14 @@ hl.env("CLUTTER_BACKEND", "wayland")
hl.env("GDK_BACKEND", "wayland")
hl.env("SDL_VIDEODRIVER", "wayland")
hl.env("XDG_CONFIG_HOME", "/home/aram/.config")
hl.env("XDG_CACHE_HOME", "/home/aram/.cache")
hl.env("XDG_DATA_HOME", "/home/aram/.local/share")
hl.env("XDG_PICTRES_HOME", "/home/aram/Pictures")
hl.env("HYPRSHOT_DIR", "/home/aram/Pictures/Screenshots")
hl.env("XDG_CONFIG_HOME", "/home/koyomi/.config")
hl.env("XDG_CACHE_HOME", "/home/koyomi/.cache")
hl.env("XDG_DATA_HOME", "/home/koyomi/.local/share")
hl.env("XDG_PICTRES_HOME", "/home/koyomi/Pictures")
hl.env("HYPRSHOT_DIR", "/home/koyomi/Pictures/Screenshots")
hl.env("DBUS_SESSION_BUS_ADDRESS", "unix:path=/run/user/1000/bus")
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")
-10
View File
@@ -1,19 +1,9 @@
hl.on("hyprland.start", function()
hl.exec_cmd("zshell-cli shell start")
hl.exec_cmd("nm-applet")
hl.exec_cmd("blueman-applet")
hl.exec_cmd("fcitx5")
hl.exec_cmd("wl-paste --type text --watch cliphist store")
hl.exec_cmd("wl-paste --type image --watch cliphist store")
hl.exec_cmd("hyprsunset -i")
hl.exec_cmd("ksecretd")
hl.exec_cmd("nextcloud --background")
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 -9
View File
@@ -1,18 +1,18 @@
hl.monitor({
output = "eDP-1",
mode = "preferred@120",
position = "auto",
scale = 1.125,
output = "DP-2",
mode = "2560x1440@240",
position = "1728x0",
scale = 1,
bitdepth = 10,
cm = "srgb",
})
hl.monitor({
output = "",
-- mirror = "eDP-1",
mode = "preferred",
position = "auto",
scale = 1,
output = "DP-3",
mode = "3840x2160@60",
position = "0x0",
scale = 1.25,
bitdepth = 10,
cm = "srgb",
transform = 1,
})
+33 -33
View File
@@ -14,38 +14,28 @@ hl.layer_rule({
ignore_alpha = 0.5,
})
hl.gesture = { fingers = 3, direction = "horizontal", action = "workspace" }
hl.config({
input = {
kb_layout = "us",
kb_variant = "intl",
kb_options = "fkeys:basic_13-24",
sensitivity = 0.4,
sensitivity = 0,
accel_profile = "flat",
follow_mouse = 1,
touchpad = {
natural_scroll = true,
scroll_factor = 0.4,
middle_button_emulation = true,
},
},
gestures = { workspace_swipe_touch = true },
general = {
gaps_in = 0,
gaps_out = 0,
border_size = 1,
gaps_in = 2,
gaps_out = 2,
border_size = 2,
col = {
active_border = {
colors = {
C.colors.mauveAlpha,
C.colors.greenAlpha,
C.colors.sapphireAlpha,
C.colors.lavenderAlpha,
},
colors = { C.colors.mauveAlpha, C.colors.greenAlpha, C.colors.sapphireAlpha, C.colors.lavenderAlpha },
angle = 90,
},
inactive_border = {
colors = { C.colors.surface1Alpha },
angle = 90,
},
inactive_border = { colors = { C.colors.surface1Alpha }, angle = 90 },
},
},
decoration = {
@@ -73,26 +63,36 @@ hl.config({
input_methods = true,
},
},
ecosystem = { no_donation_nag = true, no_update_news = true },
misc = { disable_hyprland_logo = true },
debug = { full_cm_proto = true },
dwindle = { preserve_split = true },
ecosystem = {
no_donation_nag = true,
no_update_news = true,
},
misc = {
disable_hyprland_logo = true,
},
debug = {
disable_logs = false,
full_cm_proto = true,
},
dwindle = {
preserve_split = true,
},
})
local animations = {
{ leaf = "border", enabled = true, speed = 2, bezier = "linear" },
{ leaf = "fadeOut", enabled = true, speed = 2, bezier = "default" },
{ leaf = "fadeIn", enabled = true, speed = 3, bezier = "default" },
{ leaf = "border", enabled = true, speed = 4, bezier = "linear" },
{ leaf = "borderangle", enabled = false, speed = 3, bezier = "linear", style = "loop" },
{ leaf = "fadeOut", enabled = true, speed = 3, bezier = "default" },
{ leaf = "fadeIn", enabled = true, speed = 4, bezier = "default" },
{ leaf = "fadeLayers", enabled = true, speed = 1, bezier = "default" },
{ leaf = "fadePopups", enabled = true, speed = 1, bezier = "default" },
{ leaf = "global", enabled = true, speed = 3, bezier = "default" },
{ leaf = "layers", enabled = true, speed = 3, bezier = "cubic-bezier", style = "fade" },
{ leaf = "windows", enabled = true, speed = 2, bezier = "wind", style = "popin" },
{ leaf = "windowsIn", enabled = true, speed = 2, bezier = "winIn", style = "popin 90%" },
{ leaf = "windowsOut", enabled = true, speed = 2, bezier = "winOut", style = "popin 90%" },
{ 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 = "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 = 3, bezier = "default" },
{ leaf = "workspaces", enabled = true, speed = 4, bezier = "default" },
}
local curves = {