Update dotfiles (2026-05-16 01:02:53)

This commit is contained in:
2026-05-16 01:02:53 +02:00
parent aa4449866a
commit bf1e1ef532
17 changed files with 5871 additions and 5470 deletions
File diff suppressed because it is too large Load Diff
@@ -2911,3 +2911,51 @@
"Level": 1,
"Notification": false
},
{
"Time": "2026-05-11T23:08:01.9652269+02:00",
"Group": "AssemblyLoadContext.Unloading",
"Message": "Terminating daemon..",
"StackTrace": null,
"Level": 1,
"Notification": false
},
{
"Time": "2026-05-11T23:08:01.9675192+02:00",
"Group": "closeDaemon",
"Message": "Waiting for daemon to terminate",
"StackTrace": null,
"Level": 1,
"Notification": false
},
{
"Time": "2026-05-11T23:08:02.0265851+02:00",
"Group": "IPC",
"Message": "Connected to a client.",
"StackTrace": null,
"Level": 0,
"Notification": false
},
{
"Time": "2026-05-11T23:08:02.0675338+02:00",
"Group": "IPC",
"Message": "Disconnected from a client.",
"StackTrace": null,
"Level": 0,
"Notification": false
},
{
"Time": "2026-05-11T23:08:02.0679107+02:00",
"Group": "ProgramMain",
"Message": "Daemon gracefully stopped",
"StackTrace": null,
"Level": 1,
"Notification": false
},
{
"Time": "2026-05-11T23:08:02.1676746+02:00",
"Group": "closeDaemon",
"Message": "Waiting for daemon finished",
"StackTrace": null,
"Level": 1,
"Notification": false
},
File diff suppressed because it is too large Load Diff
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env zsh
zoom=$(hyprctl getoption cursor:zoom_factor -j | jq '.float * 1.3')
hyprctl eval "hl.config({ cursor = { zoom_factor = $zoom } })"
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env zsh
zoom=$(hyprctl getoption cursor:zoom_factor -j | jq '(.float * 0.7) | if . < 1 then 1 else . end')
hyprctl eval "hl.config({ cursor = { zoom_factor = $zoom } })"
+1 -1
View File
@@ -1,6 +1,6 @@
local animations = {
{ leaf = "border", enabled = true, speed = 10, bezier = "linear" },
{ leaf = "borderangle", enabled = true, speed = 3, bezier = "linear", style = "loop" },
{ leaf = "borderangle", enabled = true, speed = 3, bezier = "linear" },
{ leaf = "fadeOut", enabled = true, speed = 3, bezier = "default" },
{ leaf = "fadeIn", enabled = true, speed = 4, bezier = "default" },
{ leaf = "fadeLayers", enabled = true, speed = 1, bezier = "default" },
+1
View File
@@ -10,6 +10,7 @@ hl.config({
cursor = {
no_hardware_cursors = false,
use_cpu_buffer = 2,
zoom_factor = 1.0,
},
xwayland = {
+9
View File
@@ -10,6 +10,15 @@ hl.bind(mainMod .. " + N", hl.dsp.global("zshell:toggle-nc"))
hl.bind(mainMod .. " + SHIFT + S", hl.dsp.global("zshell:screenshot"))
hl.bind(mainMod .. " + CTRL + S", hl.dsp.global("zshell:screenshotFreeze"))
hl.bind(mainMod .. " + L", hl.dsp.global("zshell:lock"))
hl.bind(mainMod .. " + I", hl.dsp.global("zshell:toggle-settings"))
hl.bind(
mainMod .. " + CTRL + SHIFT + R",
hl.dsp.exec_cmd("zshell-cli shell kill; sleep 0.5; " .. prefix .. "zshell-cli shell start")
)
-- ZOOMING HYPRLAND IS WEIRD
hl.bind(mainMod .. " + mouse_down", hl.dsp.exec_cmd("~/.config/hypr/scripts/zoomIn.sh"))
hl.bind(mainMod .. " + mouse_up", hl.dsp.exec_cmd("~/.config/hypr/scripts/zoomOut.sh"))
-- QML
hl.bind("CTRL + mouse:274", hl.dsp.exec_cmd("ideskpet toggle-region"))
+17 -4
View File
@@ -32,6 +32,15 @@ for _, title in ipairs(titles) do
})
end
hl.window_rule({
match = {
class = "osu!",
title = "osu!",
},
fullscreen_state = 3,
content = "game",
})
hl.window_rule({
name = "fix-xwayland-drags",
match = {
@@ -56,9 +65,7 @@ hl.window_rule({
hl.window_rule({
match = {
fullscreen_state_client = 2,
fullscreen_state_internal = 2,
class = "librewolf",
fullscreen_state_internal = 4,
},
idle_inhibit = "always",
@@ -67,7 +74,13 @@ hl.window_rule({
hl.window_rule({
match = {
fullscreen_state_client = 4,
fullscreen_state_internal = 4,
},
idle_inhibit = "always",
})
hl.window_rule({
match = {
content = "game",
},
+17 -1
View File
@@ -94,7 +94,7 @@
"desktopIcons": false,
"dateFormat": "ddd d MMM - hh:mm:ss",
"color": {
"mode": "light",
"mode": "dark",
"smart": false,
"scheduleDark": true,
"scheduleHyprsunset": true,
@@ -434,5 +434,21 @@
],
"pinnedOnStartup": false,
"ignoredAppRegexes": []
},
"screenshot": {
"enable_pp": true,
"mode": "manual",
"corner_radius": 12,
"drop_shadow": true,
"rounded_corners": true,
"shadow_blur_radius": 22,
"shadow_color": [
0,
0,
0,
160
],
"shadow_offset_x": 5,
"shadow_offset_y": 5
}
}