mirror of
https://git.aramjonghu.nl/AramJonghu/hypr.git
synced 2026-06-08 14:18:24 +02:00
Compare commits
13 Commits
laptop
...
5506a79667
| Author | SHA1 | Date | |
|---|---|---|---|
| 5506a79667 | |||
| 845d28c6a1 | |||
| 77479b9043 | |||
| 3cd4504e1c | |||
| 7af1f7b0fc | |||
| defaaaed37 | |||
| 9ab5e171ac | |||
| a144bca41e | |||
| 4a431bfe9b | |||
| e3986402bd | |||
| f486733186 | |||
| de18797bfa | |||
| 7e3cf6797a |
+10
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"workspace": {
|
||||||
|
"library": [
|
||||||
|
"/usr/share/hypr/stubs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"diagnostics": {
|
||||||
|
"globals": ["hl"]
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
require("binds")
|
||||||
|
require("env")
|
||||||
|
require("executes")
|
||||||
|
require("monitors")
|
||||||
|
require("settings")
|
||||||
|
require("windowrules")
|
||||||
+4
-2
@@ -4,7 +4,7 @@ bindm = SUPER,mouse:273,resizewindow
|
|||||||
bind = SUPER,RETURN,exec, foot
|
bind = SUPER,RETURN,exec, foot
|
||||||
bind = SUPER,Q,killactive
|
bind = SUPER,Q,killactive
|
||||||
bind = SUPER,M,exit
|
bind = SUPER,M,exit
|
||||||
bind = SUPER,E,exec, thunar
|
bind = SUPER,E,exec, dolphin
|
||||||
bind = SUPER,S,togglefloating
|
bind = SUPER,S,togglefloating
|
||||||
bind = SUPER,P,pseudo
|
bind = SUPER,P,pseudo
|
||||||
bind = SUPER,B,exec, firefox
|
bind = SUPER,B,exec, firefox
|
||||||
@@ -57,10 +57,12 @@ bindl = , XF86AudioPlay, exec, playerctl play-pause
|
|||||||
bindl = , XF86AudioPrev, exec, playerctl previous
|
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||||
bindl = , XF86AudioNext, exec, playerctl next
|
bindl = , XF86AudioNext, exec, playerctl next
|
||||||
|
|
||||||
bind = , PRINT, exec, hyprshot -m region -z
|
# bind = , PRINT, exec, hyprshot -m region -z
|
||||||
|
|
||||||
# zshell
|
# zshell
|
||||||
|
bind = , PRINT, global, zshell:screenshotFreeze
|
||||||
bind = SUPER, R, global, zshell:toggle-launcher
|
bind = SUPER, R, global, zshell:toggle-launcher
|
||||||
bind = SUPER, A, global, zshell:toggle-nc
|
bind = SUPER, A, global, zshell:toggle-nc
|
||||||
bind = SUPER, V, global, zshell:toggle-drawing
|
bind = SUPER, V, global, zshell:toggle-drawing
|
||||||
bind = SUPER, F1, global, zshell:lock
|
bind = SUPER, F1, global, zshell:lock
|
||||||
|
bind = SUPER, F2, global, zshell:toggle-settings
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
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 + RETURN", hl.dsp.exec_cmd("foot"))
|
||||||
|
hl.bind("SUPER + Q", hl.dsp.killactive())
|
||||||
|
hl.bind("SUPER + M", hl.dsp.exit())
|
||||||
|
hl.bind("SUPER + E", hl.dsp.exec_cmd("dolphin"))
|
||||||
|
hl.bind("SUPER + S", hl.dsp.togglefloating())
|
||||||
|
hl.bind("SUPER + P", hl.dsp.pseudo())
|
||||||
|
hl.bind("SUPER + B", hl.dsp.exec_cmd("firefox"))
|
||||||
|
|
||||||
|
hl.bind("SUPER + H", hl.dsp.movefocus("l"))
|
||||||
|
hl.bind("SUPER + L", hl.dsp.movefocus("r"))
|
||||||
|
hl.bind("SUPER + K", hl.dsp.movefocus("u"))
|
||||||
|
hl.bind("SUPER + J", hl.dsp.movefocus("d"))
|
||||||
|
hl.bind("SUPER + SHIFT + L", hl.dsp.resizeactive("50 0"), { repeating = true })
|
||||||
|
hl.bind("SUPER + SHIFT + H", hl.dsp.resizeactive("-50 0"), { repeating = true })
|
||||||
|
hl.bind("SUPER + SHIFT + K", hl.dsp.resizeactive("0 -50"), { repeating = true })
|
||||||
|
hl.bind("SUPER + SHIFT + J", hl.dsp.resizeactive("0 50"), { repeating = true })
|
||||||
|
|
||||||
|
hl.bind("SUPER + 1", hl.dsp.workspace("1"))
|
||||||
|
hl.bind("SUPER + 2", hl.dsp.workspace("2"))
|
||||||
|
hl.bind("SUPER + 3", hl.dsp.workspace("3"))
|
||||||
|
hl.bind("SUPER + 4", hl.dsp.workspace("4"))
|
||||||
|
hl.bind("SUPER + 5", hl.dsp.workspace("5"))
|
||||||
|
hl.bind("SUPER + 6", hl.dsp.workspace("6"))
|
||||||
|
hl.bind("SUPER + 7", hl.dsp.workspace("7"))
|
||||||
|
hl.bind("SUPER + 8", hl.dsp.workspace("8"))
|
||||||
|
hl.bind("SUPER + 9", hl.dsp.workspace("9"))
|
||||||
|
hl.bind("SUPER + 0", hl.dsp.workspace("10"))
|
||||||
|
hl.bind("ALT + 1", hl.dsp.movetoworkspace("1"))
|
||||||
|
hl.bind("ALT + 2", hl.dsp.movetoworkspace("2"))
|
||||||
|
hl.bind("ALT + 3", hl.dsp.movetoworkspace("3"))
|
||||||
|
hl.bind("ALT + 4", hl.dsp.movetoworkspace("4"))
|
||||||
|
hl.bind("ALT + 5", hl.dsp.movetoworkspace("5"))
|
||||||
|
hl.bind("ALT + 6", hl.dsp.movetoworkspace("6"))
|
||||||
|
hl.bind("ALT + 7", hl.dsp.movetoworkspace("7"))
|
||||||
|
hl.bind("ALT + 8", hl.dsp.movetoworkspace("8"))
|
||||||
|
hl.bind("ALT + 9", hl.dsp.movetoworkspace("9"))
|
||||||
|
hl.bind("ALT + 0", hl.dsp.movetoworkspace("10"))
|
||||||
|
hl.bind("SUPER + mouse_down", hl.dsp.workspace("e+1"))
|
||||||
|
hl.bind("SUPER + mouse_up", hl.dsp.workspace("e-1"))
|
||||||
|
hl.bind("SUPER + G", hl.dsp.togglegroup())
|
||||||
|
hl.bind("SUPER + TAB", hl.dsp.changegroupactive())
|
||||||
|
|
||||||
|
hl.bind("SUPER + F", hl.dsp.fullscreen())
|
||||||
|
hl.bind("SUPER + D", hl.dsp.exec_cmd("fuzzel"))
|
||||||
|
hl.bind(
|
||||||
|
"XF86AudioRaiseVolume",
|
||||||
|
hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"),
|
||||||
|
{ repeating = true, locked = true }
|
||||||
|
)
|
||||||
|
hl.bind(
|
||||||
|
"XF86AudioLowerVolume",
|
||||||
|
hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"),
|
||||||
|
{ repeating = true, locked = true }
|
||||||
|
)
|
||||||
|
hl.bind(
|
||||||
|
"XF86AudioMute",
|
||||||
|
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"),
|
||||||
|
{ repeating = true, locked = true }
|
||||||
|
)
|
||||||
|
hl.bind("F14", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"), { repeating = true, locked = true })
|
||||||
|
hl.bind("F15", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"), { repeating = true, locked = true })
|
||||||
|
hl.bind("F17", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SOURCE@ 5%+"), { repeating = true, locked = true })
|
||||||
|
hl.bind("F16", 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("PRINT", hl.dsp.global("zshell:screenshotFreeze"))
|
||||||
|
hl.bind("SUPER + R", hl.dsp.global("zshell:toggle-launcher"))
|
||||||
|
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"))
|
||||||
+4
-1
@@ -7,7 +7,7 @@ env = EDITOR,nvim
|
|||||||
env = HYPRCURSOR_THEME,catppuccin-macchiato-light-cursors
|
env = HYPRCURSOR_THEME,catppuccin-macchiato-light-cursors
|
||||||
env = HYPRCURSOR_SIZE,24
|
env = HYPRCURSOR_SIZE,24
|
||||||
|
|
||||||
ent = ELECTRON_OZONE_PLATFORM_HINT,auto
|
env = ELECTRON_OZONE_PLATFORM_HINT,auto
|
||||||
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
||||||
env = QT_QPA_PLATFORM,wayland
|
env = QT_QPA_PLATFORM,wayland
|
||||||
env = QT_QPA_PLATFORMTHEME,qt6ct
|
env = QT_QPA_PLATFORMTHEME,qt6ct
|
||||||
@@ -27,3 +27,6 @@ env = HYPRSHOT_DIR,$HOME/Pictures/Screenshots
|
|||||||
|
|
||||||
env = RUSTICL_ENABLE,radeonsi
|
env = RUSTICL_ENABLE,radeonsi
|
||||||
env = AMD_VULKAN_ICD,RADV
|
env = AMD_VULKAN_ICD,RADV
|
||||||
|
|
||||||
|
env = HSA_OVERRIDE_GFX_VERSION,12.0.1
|
||||||
|
env = HCC_AMDGPU_TARGET,gfx1201
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
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-light-cursors")
|
||||||
|
hl.env("HYPRCURSOR_SIZE,24")
|
||||||
|
|
||||||
|
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_CONFIG_HOME,$HOME/.config")
|
||||||
|
hl.env("XDG_CACHE_HOME,$HOME/.cache")
|
||||||
|
hl.env("XDG_DATA_HOME,$HOME/.local/share")
|
||||||
|
hl.env("XDG_PICTRES_HOME,$HOME/Pictures")
|
||||||
|
hl.env("HYPRSHOT_DIR,$HOME/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")
|
||||||
@@ -1,10 +1,7 @@
|
|||||||
exec-once = qs -c /usr/etc/xdg/quickshell/zshell
|
exec-once = zshell-cli shell start
|
||||||
exec-once = /bin/AyuGram
|
|
||||||
exec-once = /opt/teams-for-linux/teams-for-linux
|
|
||||||
exec-once = vesktop
|
|
||||||
exec-once = steam -silent
|
|
||||||
exec-once = fcitx5
|
exec-once = fcitx5
|
||||||
exec-once = wl-paste --type text --watch cliphist store
|
exec-once = wl-paste --type text --watch cliphist store
|
||||||
exec-once = wl-paste --type image --watch cliphist store
|
exec-once = wl-paste --type image --watch cliphist store
|
||||||
exec-once = nextcloud --background
|
exec-once = nextcloud --background
|
||||||
exec-once = hyprsunset -i
|
exec-once = hyprsunset -i
|
||||||
|
exec-once = nm-applet
|
||||||
|
|||||||
@@ -0,0 +1,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("wl-paste --type text --watch cliphist store")
|
||||||
|
hl.exec.cmd("wl-paste --type image --watch cliphist store")
|
||||||
|
hl.exec.cmd("hyprsunset -i")
|
||||||
|
end)
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
local rosewaterAlpha = rgb(f4dbd6)
|
||||||
|
|
||||||
|
local flamingoAlpha = rgb(f0c6c6)
|
||||||
|
|
||||||
|
local pinkAlpha = rgb(f5bde6)
|
||||||
|
|
||||||
|
local mauveAlpha = rgb(c6a0f6)
|
||||||
|
|
||||||
|
local redAlpha = rgb(ed8796)
|
||||||
|
|
||||||
|
local maroonAlpha = rgb(ee99a0)
|
||||||
|
|
||||||
|
local peachAlpha = rgb(f5a97f)
|
||||||
|
|
||||||
|
local yellowAlpha = rgb(eed49f)
|
||||||
|
|
||||||
|
local greenAlpha = rgb(a6da95)
|
||||||
|
|
||||||
|
local tealAlpha = rgb(8bd5ca)
|
||||||
|
|
||||||
|
local skyAlpha = rgb(91d7e3)
|
||||||
|
|
||||||
|
local sapphireAlpha = rgb(7dc4e4)
|
||||||
|
|
||||||
|
local blueAlpha = rgb(8aadf4)
|
||||||
|
|
||||||
|
local lavenderAlpha = rgb(b7bdf8)
|
||||||
|
|
||||||
|
local textAlpha = rgb(cad3f5)
|
||||||
|
|
||||||
|
local subtext1Alpha = rgb(b8c0e0)
|
||||||
|
|
||||||
|
local subtext0Alpha = rgb(a5adcb)
|
||||||
|
|
||||||
|
local overlay2Alpha = rgb(939ab7)
|
||||||
|
|
||||||
|
local overlay1Alpha = rgb(8087a2)
|
||||||
|
|
||||||
|
local overlay0Alpha = rgb(6e738d)
|
||||||
|
|
||||||
|
local surface2Alpha = rgb(5b6078)
|
||||||
|
|
||||||
|
local surface1Alpha = rgb(494d64)
|
||||||
|
|
||||||
|
local surface0Alpha = rgb(363a4f)
|
||||||
|
|
||||||
|
local baseAlpha = rgb(24273a)
|
||||||
|
|
||||||
|
local mantleAlpha = rgb(1e2030)
|
||||||
|
|
||||||
|
local crustAlpha = rgb(181926)
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
monitor= DP-2, 2560x1440@240, 1728x0, 1, bitdepth, 10, cm, srgb
|
monitor= DP-2, 2560x1440@240, 1728x0, 1, bitdepth, 10, cm, srgb
|
||||||
monitor = DP-3, 3840x2160@60, 0x0, 1.25, bitdepth, 10, transform, 1
|
monitor = DP-3, 3840x2160@60, 0x0, 1.25, bitdepth, 10, transform, 1
|
||||||
|
|
||||||
#monitor = DP-3, 3840x2160@60, 0x0, 1.25, bitdepth, 10, transform, 1, icc, ~/color_profiles/1440p\ monitor.icm
|
#monitor = DP-3, 3840x2160@60, 0x0, 1.25, bitdepth, 10, transform, 1, icc, /home/koyomi/.config/colorprofiles/lg4k.icm
|
||||||
|
|
||||||
render {
|
render {
|
||||||
cm_auto_hdr = 0
|
cm_auto_hdr = 0
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
hl.monitor({
|
||||||
|
output = "DP-2",
|
||||||
|
mode = "2560x1440@240",
|
||||||
|
position = "1728x0",
|
||||||
|
scale = 1,
|
||||||
|
bitdepth = 10,
|
||||||
|
cm = "srgb",
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.monitor({
|
||||||
|
output = "DP-3",
|
||||||
|
mode = "3840x2160@60",
|
||||||
|
position = "0x0",
|
||||||
|
scale = 1.25,
|
||||||
|
bitdepth = 10,
|
||||||
|
cm = "srgb",
|
||||||
|
transform = 1,
|
||||||
|
})
|
||||||
+17
-8
@@ -11,25 +11,25 @@ input {
|
|||||||
|
|
||||||
general {
|
general {
|
||||||
gaps_in = 2
|
gaps_in = 2
|
||||||
gaps_out = 4
|
gaps_out = 2
|
||||||
border_size = 1
|
border_size = 1
|
||||||
col.active_border = $mauve $teal $green $blue $lavender 90deg
|
col.active_border = $mauve $teal $green $sapphire $lavender 90deg
|
||||||
col.inactive_border = $crust 90deg
|
col.inactive_border = $surface1 90deg
|
||||||
}
|
}
|
||||||
|
|
||||||
decoration {
|
decoration {
|
||||||
rounding = 1
|
rounding = 1
|
||||||
shadow {
|
shadow {
|
||||||
enabled = true
|
enabled = false
|
||||||
range = 15
|
range = 6
|
||||||
render_power = 5
|
render_power = 6
|
||||||
color = $base
|
color = $base
|
||||||
color_inactive = $mantle
|
color_inactive = $mantle
|
||||||
}
|
}
|
||||||
blur {
|
blur {
|
||||||
enabled = true
|
enabled = false
|
||||||
size = 2
|
size = 2
|
||||||
passes = 3
|
passes = 2
|
||||||
new_optimizations = on
|
new_optimizations = on
|
||||||
ignore_opacity = true
|
ignore_opacity = true
|
||||||
contrast = 1.0
|
contrast = 1.0
|
||||||
@@ -44,6 +44,14 @@ decoration {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
layerrule = blur_popups on, match:namespace ZShell-Bar
|
||||||
|
layerrule = ignore_alpha 0.5, match:namespace ZShell-Bar
|
||||||
|
layerrule = blur on, match:namespace ZShell-Bar
|
||||||
|
|
||||||
|
layerrule = blur_popups on, match:namespace ZShell-Auth
|
||||||
|
layerrule = ignore_alpha 0.5, match:namespace ZShell-Auth
|
||||||
|
layerrule = blur on, match:namespace ZShell-Auth
|
||||||
|
|
||||||
animations {
|
animations {
|
||||||
enabled = 1
|
enabled = 1
|
||||||
bezier = overshot,0.13,0.99,0.29,1.1
|
bezier = overshot,0.13,0.99,0.29,1.1
|
||||||
@@ -59,6 +67,7 @@ dwindle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ecosystem {
|
ecosystem {
|
||||||
|
no_donation_nag = true
|
||||||
no_update_news = true
|
no_update_news = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,84 @@
|
|||||||
|
require "macchiato"
|
||||||
|
|
||||||
|
hl.layer_rule({
|
||||||
|
name = "blur_popups_bar",
|
||||||
|
blur = true,
|
||||||
|
match = { namespace = "ZShell-Bar" },
|
||||||
|
ignore_alpha = 0.5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = "blur_popups_auth",
|
||||||
|
blur = true,
|
||||||
|
match = { namespace = "ZShell-Auth" },
|
||||||
|
ignore_alpha = 0.5,
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
hl.input ({
|
||||||
|
kb_layout = "us",
|
||||||
|
kb_variant = "intl",
|
||||||
|
kb_options = "fkeys:basic_13-24",
|
||||||
|
sensitivity = 0,
|
||||||
|
accel_profile = "flat",
|
||||||
|
follow_mouse = 1,
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.general ({
|
||||||
|
gaps_in = 2,
|
||||||
|
gaps_out = 2,
|
||||||
|
border_size = 1,
|
||||||
|
col.active_border = { colors = { mauveAlpha, greenAlpha, sapphireAlpha, lavenderAlpha }, angle? = 90 },
|
||||||
|
col.inactive_border = { surface1Alpha, angle? = 90},
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.decoration ({
|
||||||
|
rounding = 1,
|
||||||
|
hl.shadow ({
|
||||||
|
enabled = false,
|
||||||
|
range = 6,
|
||||||
|
render_power = 6,
|
||||||
|
color = baseAlpha,
|
||||||
|
color_inactive = mantleAlpha,
|
||||||
|
}),
|
||||||
|
hl.blur ({
|
||||||
|
enabled = false,
|
||||||
|
size = 2,
|
||||||
|
passes = 2,
|
||||||
|
new_optimizations = true,
|
||||||
|
ignore_opacity = true,
|
||||||
|
contrast = 1.0,
|
||||||
|
brightness = 1.0,
|
||||||
|
vibrancy = 0,
|
||||||
|
vibrancy_darkness = 0,
|
||||||
|
xray = false,
|
||||||
|
noise = 0.05,
|
||||||
|
popups = true,
|
||||||
|
input_methods = true,
|
||||||
|
}),
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.curve({ type = "brezier", points = { {0, 13}, {0, 99}, {0, 29}, {1, 1}}})
|
||||||
|
hl.animation({ leaf = "windows", enabled = true, speed = 4, spring= "overshot", style = "slide" })
|
||||||
|
hl.animation({ leaf = "fade", enabled = true, speed = 4, })
|
||||||
|
hl.animation({ leaf = "border", enabled = true, speed = 4, })
|
||||||
|
hl.animation({ leaf = "workspaces", enabled = true, speed = 4, spring = "overshot", style = "slide" })
|
||||||
|
|
||||||
|
hl.config({
|
||||||
|
dwindle = {
|
||||||
|
pseudotile = true,
|
||||||
|
preserve_split = true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.ecosystem ({
|
||||||
|
no_donation_nag = true,
|
||||||
|
no_update_news = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.misc ({
|
||||||
|
disable_hyprland_logo = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.debug ({
|
||||||
|
full_cm_proto = true,
|
||||||
|
})
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
hl.windowrule({
|
||||||
|
name = "xwayland",
|
||||||
|
opacity = "0.0 override",
|
||||||
|
no_anim = true,
|
||||||
|
no_initial_focus = true,
|
||||||
|
max_size = { 1, 1 },
|
||||||
|
no_blur = true,
|
||||||
|
no_focus = true,
|
||||||
|
match = { class = "^(xwaylandvideobridge)$" },
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.windowrule({
|
||||||
|
name = "fullscreen_idling",
|
||||||
|
idle_inhibit = "fullscreen",
|
||||||
|
match = { class = ".*" },
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.windowrule({
|
||||||
|
name = "video_idling",
|
||||||
|
idle_inhibit = "always",
|
||||||
|
match = { content = "video" },
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.windowrule({
|
||||||
|
name = "game_idling",
|
||||||
|
idle_inhibit = "always",
|
||||||
|
match = { content = "game" },
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.windowrule({
|
||||||
|
name = "match_fullscreen",
|
||||||
|
idle_inhibit = "always",
|
||||||
|
match = { fullscreen_state_internal = 2, fullscreen_state_client = 2 },
|
||||||
|
})
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
$primary_paletteKeyColor = 6a73ac
|
|
||||||
$secondary_paletteKeyColor = 72758e
|
|
||||||
$tertiary_paletteKeyColor = 9b6592
|
|
||||||
$neutral_paletteKeyColor = 77767b
|
|
||||||
$neutral_variant_paletteKeyColor = 767680
|
|
||||||
$background = 131317
|
|
||||||
$onBackground = e4e1e7
|
|
||||||
$surface = 131317
|
|
||||||
$surfaceDim = 131317
|
|
||||||
$surfaceBright = 39393d
|
|
||||||
$surfaceContainerLowest = 0e0e12
|
|
||||||
$surfaceContainerLow = 1b1b1f
|
|
||||||
$surfaceContainer = 1f1f23
|
|
||||||
$surfaceContainerHigh = 2a2a2e
|
|
||||||
$surfaceContainerHighest = 353438
|
|
||||||
$onSurface = e4e1e7
|
|
||||||
$surfaceVariant = 46464f
|
|
||||||
$onSurfaceVariant = c6c5d1
|
|
||||||
$inverseSurface = e4e1e7
|
|
||||||
$inverseOnSurface = 303034
|
|
||||||
$outline = 90909a
|
|
||||||
$outlineVariant = 46464f
|
|
||||||
$shadow = 000000
|
|
||||||
$scrim = 000000
|
|
||||||
$surfaceTint = bac3ff
|
|
||||||
$primary = bac3ff
|
|
||||||
$onPrimary = 232c60
|
|
||||||
$primaryContainer = 6a73ac
|
|
||||||
$onPrimaryContainer = ffffff
|
|
||||||
$inversePrimary = 525b92
|
|
||||||
$secondary = c3c5e0
|
|
||||||
$onSecondary = 2c2f44
|
|
||||||
$secondaryContainer = 42455c
|
|
||||||
$onSecondaryContainer = b1b3ce
|
|
||||||
$tertiary = f1b3e5
|
|
||||||
$onTertiary = 4c1f48
|
|
||||||
$tertiaryContainer = b77ead
|
|
||||||
$onTertiaryContainer = 000000
|
|
||||||
$error = ffb4ab
|
|
||||||
$onError = 690005
|
|
||||||
$errorContainer = 93000a
|
|
||||||
$onErrorContainer = ffdad6
|
|
||||||
$primaryFixed = dee0ff
|
|
||||||
$primaryFixedDim = bac3ff
|
|
||||||
$onPrimaryFixed = 0b154b
|
|
||||||
$onPrimaryFixedVariant = 3a4378
|
|
||||||
$secondaryFixed = dfe1fd
|
|
||||||
$secondaryFixedDim = c3c5e0
|
|
||||||
$onSecondaryFixed = 171a2e
|
|
||||||
$onSecondaryFixedVariant = 42455c
|
|
||||||
$tertiaryFixed = ffd7f4
|
|
||||||
$tertiaryFixedDim = f1b3e5
|
|
||||||
$onTertiaryFixed = 340831
|
|
||||||
$onTertiaryFixedVariant = 66365f
|
|
||||||
$term0 = 353434
|
|
||||||
$term1 = a178ff
|
|
||||||
$term2 = 44def5
|
|
||||||
$term3 = ffdcf2
|
|
||||||
$term4 = 94abd7
|
|
||||||
$term5 = ada0ed
|
|
||||||
$term6 = 9dceff
|
|
||||||
$term7 = e8d3de
|
|
||||||
$term8 = ac9fa9
|
|
||||||
$term9 = b797ff
|
|
||||||
$term10 = 89ecff
|
|
||||||
$term11 = fff0f6
|
|
||||||
$term12 = b2c2dc
|
|
||||||
$term13 = c4b6f6
|
|
||||||
$term14 = bae0ff
|
|
||||||
$term15 = ffffff
|
|
||||||
$rosewater = f6eff9
|
|
||||||
$flamingo = e7def4
|
|
||||||
$pink = ded8ff
|
|
||||||
$mauve = b9baff
|
|
||||||
$red = b9a8ff
|
|
||||||
$maroon = c4b7ee
|
|
||||||
$peach = e0c2f9
|
|
||||||
$yellow = ffecf3
|
|
||||||
$green = c8e3ff
|
|
||||||
$teal = d0e0ff
|
|
||||||
$sky = ccdbff
|
|
||||||
$sapphire = b1c6ff
|
|
||||||
$blue = aab9ff
|
|
||||||
$lavender = c2c9ff
|
|
||||||
$klink = 6a84d1
|
|
||||||
$klinkSelection = 6a84d1
|
|
||||||
$kvisited = 7775dc
|
|
||||||
$kvisitedSelection = 7775dc
|
|
||||||
$knegative = 946dff
|
|
||||||
$knegativeSelection = 946dff
|
|
||||||
$kneutral = c794ff
|
|
||||||
$kneutralSelection = c794ff
|
|
||||||
$kpositive = 5daeff
|
|
||||||
$kpositiveSelection = 5eaeff
|
|
||||||
$text = e4e1e7
|
|
||||||
$subtext1 = c6c5d1
|
|
||||||
$subtext0 = 90909a
|
|
||||||
$overlay2 = 7d7d86
|
|
||||||
$overlay1 = 6a6a72
|
|
||||||
$overlay0 = 595960
|
|
||||||
$surface2 = 48484e
|
|
||||||
$surface1 = 37373d
|
|
||||||
$surface0 = 25252a
|
|
||||||
$base = 131317
|
|
||||||
$mantle = 131317
|
|
||||||
$crust = 121216
|
|
||||||
$success = B5CCBA
|
|
||||||
$onSuccess = 213528
|
|
||||||
$successContainer = 374B3E
|
|
||||||
$onSuccessContainer = D1E9D6
|
|
||||||
Reference in New Issue
Block a user