mirror of
https://git.aramjonghu.dev/AramJonghu/hypr.git
synced 2026-09-08 10:43:30 +02:00
Compare commits
16
Commits
master
..
de39793c8e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
de39793c8e | ||
|
|
4cff9aaf8c | ||
|
|
1b19d5f696 | ||
|
|
c985449d4e | ||
|
|
d647e2b765 | ||
|
|
cec875da63 | ||
|
|
6c6a60af2f | ||
|
|
cbba6c9afe | ||
|
|
b40e1f5d5a | ||
|
|
e0182aff29 | ||
|
|
cb8eedb914 | ||
|
|
2a19c051c3 | ||
|
|
2d4c1f09fc | ||
|
|
de44ac857d | ||
|
|
cfd4f28171 | ||
|
|
6be730fdaa |
+4
-10
@@ -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,18 +40,13 @@ hl.bind(
|
||||
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"),
|
||||
{ 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("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { 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("SUPER + R", hl.dsp.global("zshell:toggle-launcher"))
|
||||
|
||||
+24
-29
@@ -1,34 +1,29 @@
|
||||
hl.env("ZSH", "/usr/share/oh-my-zsh/")
|
||||
hl.env("BROWSER", "chromium")
|
||||
hl.env("TERM", "tmux-256color")
|
||||
hl.env("VISUAL", "nvim")
|
||||
hl.env("EDITOR", "nvim")
|
||||
hl.env("ZSH","/usr/share/oh-my-zsh/")
|
||||
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", "28")
|
||||
hl.env("HYPRCURSOR_THEME","catppuccin-macchiato-light-cursors")
|
||||
hl.env("HYPRCURSOR_SIZE","28")
|
||||
|
||||
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "auto")
|
||||
hl.env("QT_AUTO_SCREEN_SCALE_FACTOR", "1")
|
||||
hl.env("QT_QPA_PLATFORM", "wayland")
|
||||
hl.env("QT_QPA_PLATFORMTHEME", "qt6ct")
|
||||
hl.env("QT_WAYLAND_DISABLE_WINDOWDECORATION", "1")
|
||||
hl.env("ELECTRON_OZONE_PLATFORM_HINT","auto")
|
||||
hl.env("QT_AUTO_SCREEN_SCALE_FACTOR","1")
|
||||
hl.env("QT_QPA_PLATFORM","wayland")
|
||||
hl.env("QT_QPA_PLATFORMTHEME","qt6ct")
|
||||
hl.env("QT_WAYLAND_DISABLE_WINDOWDECORATION","1")
|
||||
|
||||
hl.env("XDG_SESSION_DESKTOP", "Hyprland")
|
||||
hl.env("XDG_SESSION_TYPE", "wayland")
|
||||
hl.env("CLUTTER_BACKEND", "wayland")
|
||||
hl.env("GDK_BACKEND", "wayland")
|
||||
hl.env("SDL_VIDEODRIVER", "wayland")
|
||||
hl.env("XDG_SESSION_DESKTOP","Hyprland")
|
||||
hl.env("XDG_SESSION_TYPE","wayland")
|
||||
hl.env("CLUTTER_BACKEND","wayland")
|
||||
hl.env("GDK_BACKEND","wayland")
|
||||
hl.env("SDL_VIDEODRIVER","wayland")
|
||||
|
||||
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("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("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("RUSTICL_ENABLE","radeonsi")
|
||||
hl.env("AMD_VULKAN_ICD","RADV")
|
||||
|
||||
@@ -2,11 +2,8 @@ hl.on("hyprland.start", function()
|
||||
hl.exec_cmd("zshell-cli shell start")
|
||||
hl.exec_cmd("nm-applet")
|
||||
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 image --watch cliphist store")
|
||||
hl.exec_cmd("hyprsunset -i")
|
||||
hl.exec_cmd("nextcloud --background")
|
||||
hl.exec_cmd("ksecretd")
|
||||
hl.exec_cmd("easyeffects --service-mode")
|
||||
hl.exec_cmd("nextcloud --background")
|
||||
end)
|
||||
|
||||
+13
-14
@@ -1,19 +1,18 @@
|
||||
hl.monitor({
|
||||
output = "DP-1",
|
||||
mode = "2560x1440@240",
|
||||
position = "auto-left",
|
||||
scale = 1,
|
||||
bitdepth = 10,
|
||||
cm = "srgb",
|
||||
vrr = 0,
|
||||
})
|
||||
|
||||
hl.monitor({
|
||||
output = "DP-2",
|
||||
mode = "preffered",
|
||||
position = "auto-right",
|
||||
output = "eDP-1",
|
||||
mode = "2560x1600@60",
|
||||
position = "0x0",
|
||||
scale = 1.25,
|
||||
bitdepth = 10,
|
||||
cm = "srgb",
|
||||
transform = 3,
|
||||
})
|
||||
|
||||
hl.monitor({
|
||||
output = "",
|
||||
mode = "highres@highrr",
|
||||
position = "auto",
|
||||
scale = 2,
|
||||
bitdepth = 10,
|
||||
cm = "srgb",
|
||||
mirror = "eDP-1"
|
||||
})
|
||||
|
||||
+20
-12
@@ -22,11 +22,18 @@ hl.config({
|
||||
sensitivity = 0,
|
||||
accel_profile = "flat",
|
||||
follow_mouse = 1,
|
||||
touchpad = {
|
||||
natural_scroll = true,
|
||||
scroll_factor = 0.4,
|
||||
middle_button_emulation = true,
|
||||
},
|
||||
gestures = {
|
||||
},
|
||||
},
|
||||
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 },
|
||||
@@ -79,18 +86,19 @@ hl.config({
|
||||
})
|
||||
|
||||
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 = {
|
||||
|
||||
Reference in New Issue
Block a user