diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-07-15 01:54:35 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:35 -0700 |
| commit | fc19045e8bca78576aa873f8cada5e4c967fafbb (patch) | |
| tree | c5d06cc4a8d2e323a919f854c624e0c3cb67f5d5 /config/hypr/UserConfigs | |
| parent | 5284ac303bd72b707430808d0d8d298f00f0ac83 (diff) | |
Add: same startup uncommented user_decorations
The user_decorations file has default values.
The commented out values caused it to reset to defaults
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: CHANGELOG.md
modified: config/hypr/UserConfigs/user_decorations.lua
modified: config/hypr/UserConfigs/user_startup.lua
Diffstat (limited to 'config/hypr/UserConfigs')
| -rw-r--r-- | config/hypr/UserConfigs/user_decorations.lua | 94 | ||||
| -rw-r--r-- | config/hypr/UserConfigs/user_startup.lua | 10 |
2 files changed, 57 insertions, 47 deletions
diff --git a/config/hypr/UserConfigs/user_decorations.lua b/config/hypr/UserConfigs/user_decorations.lua index 6d2bab7a..b3b175d9 100644 --- a/config/hypr/UserConfigs/user_decorations.lua +++ b/config/hypr/UserConfigs/user_decorations.lua @@ -11,54 +11,54 @@ -- Uncomment and edit examples below if you want defaults in the repo template. -- Example general overrides: --- hl.config({ --- general = { --- border_size = 1, --- gaps_in = 4, --- gaps_out = 6, --- }, --- }) +hl.config({ + general = { + border_size = 1, + gaps_in = 4, + gaps_out = 6, + }, +}) -- Example decoration overrides: --- hl.config({ --- decoration = { --- rounding = 10, --- active_opacity = 1.0, --- inactive_opacity = 0.95, --- fullscreen_opacity = 1.0, --- dim_inactive = true, --- dim_strength = 0.1, --- dim_special = 0.8, --- shadow = { --- enabled = true, --- range = 2, --- render_power = 1, --- color = "rgba(8db4ffff)", --- color_inactive = "rgba(5f6578ff)", --- }, --- blur = { --- enabled = true, --- size = 6, --- passes = 3, --- new_optimizations = true, --- xray = true, --- ignore_opacity = true, --- special = true, --- popups = true, --- }, --- }, --- }) +hl.config({ + decoration = { + rounding = 10, + active_opacity = 1.0, + inactive_opacity = 0.95, + fullscreen_opacity = 1.0, + dim_inactive = true, + dim_strength = 0.1, + dim_special = 0.8, + shadow = { + enabled = true, + range = 2, + render_power = 1, + color = "rgba(8db4ffff)", + color_inactive = "rgba(5f6578ff)", + }, + blur = { + enabled = true, + size = 6, + passes = 3, + new_optimizations = true, + xray = true, + ignore_opacity = true, + special = true, + popups = true, + }, + }, +}) -- Example group styling: --- hl.config({ --- group = { --- col = { --- border_active = "rgba(ffffffff)", --- }, --- groupbar = { --- col = { --- active = "rgba(0f111aff)", --- }, --- }, --- }, --- }) +hl.config({ + group = { + col = { + border_active = "rgba(ffffffff)", + }, + groupbar = { + col = { + active = "rgba(0f111aff)", + }, + }, + }, +}) diff --git a/config/hypr/UserConfigs/user_startup.lua b/config/hypr/UserConfigs/user_startup.lua index efe51c61..c78cd10d 100644 --- a/config/hypr/UserConfigs/user_startup.lua +++ b/config/hypr/UserConfigs/user_startup.lua @@ -45,3 +45,13 @@ local exec_once = user_startup_helper.exec_once -- Examples: -- exec_once("blueman-applet") -- exec_once("$HOME/.config/hypr/UserScripts/RainbowBorders.sh") +-- +-- Template (uncomment and edit): +-- local startup_commands = { +-- "nm-applet", +-- "$HOME/.config/hypr/UserScripts/my-startup-script.sh", +-- } +-- +-- for _, cmd in ipairs(startup_commands) do +-- exec_once(cmd) +-- end |
