Update dotfiles (2026-05-16 01:02:53)
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -2911,3 +2911,51 @@
|
|||||||
"Level": 1,
|
"Level": 1,
|
||||||
"Notification": false
|
"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
+371
-371
File diff suppressed because it is too large
Load Diff
+515
-371
File diff suppressed because it is too large
Load Diff
+371
-371
File diff suppressed because it is too large
Load Diff
+371
-371
File diff suppressed because it is too large
Load Diff
+371
-371
File diff suppressed because it is too large
Load Diff
+371
-371
File diff suppressed because it is too large
Load Diff
+365
-413
File diff suppressed because it is too large
Load Diff
Executable
+5
@@ -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 } })"
|
||||||
Executable
+5
@@ -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,6 +1,6 @@
|
|||||||
local animations = {
|
local animations = {
|
||||||
{ leaf = "border", enabled = true, speed = 10, bezier = "linear" },
|
{ 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 = "fadeOut", enabled = true, speed = 3, bezier = "default" },
|
||||||
{ leaf = "fadeIn", enabled = true, speed = 4, bezier = "default" },
|
{ leaf = "fadeIn", enabled = true, speed = 4, bezier = "default" },
|
||||||
{ leaf = "fadeLayers", enabled = true, speed = 1, bezier = "default" },
|
{ leaf = "fadeLayers", enabled = true, speed = 1, bezier = "default" },
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ hl.config({
|
|||||||
cursor = {
|
cursor = {
|
||||||
no_hardware_cursors = false,
|
no_hardware_cursors = false,
|
||||||
use_cpu_buffer = 2,
|
use_cpu_buffer = 2,
|
||||||
|
zoom_factor = 1.0,
|
||||||
},
|
},
|
||||||
|
|
||||||
xwayland = {
|
xwayland = {
|
||||||
|
|||||||
@@ -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 .. " + SHIFT + S", hl.dsp.global("zshell:screenshot"))
|
||||||
hl.bind(mainMod .. " + CTRL + S", hl.dsp.global("zshell:screenshotFreeze"))
|
hl.bind(mainMod .. " + CTRL + S", hl.dsp.global("zshell:screenshotFreeze"))
|
||||||
hl.bind(mainMod .. " + L", hl.dsp.global("zshell:lock"))
|
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
|
-- QML
|
||||||
hl.bind("CTRL + mouse:274", hl.dsp.exec_cmd("ideskpet toggle-region"))
|
hl.bind("CTRL + mouse:274", hl.dsp.exec_cmd("ideskpet toggle-region"))
|
||||||
|
|||||||
@@ -32,6 +32,15 @@ for _, title in ipairs(titles) do
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
hl.window_rule({
|
||||||
|
match = {
|
||||||
|
class = "osu!",
|
||||||
|
title = "osu!",
|
||||||
|
},
|
||||||
|
fullscreen_state = 3,
|
||||||
|
content = "game",
|
||||||
|
})
|
||||||
|
|
||||||
hl.window_rule({
|
hl.window_rule({
|
||||||
name = "fix-xwayland-drags",
|
name = "fix-xwayland-drags",
|
||||||
match = {
|
match = {
|
||||||
@@ -56,9 +65,7 @@ hl.window_rule({
|
|||||||
|
|
||||||
hl.window_rule({
|
hl.window_rule({
|
||||||
match = {
|
match = {
|
||||||
fullscreen_state_client = 2,
|
fullscreen_state_internal = 4,
|
||||||
fullscreen_state_internal = 2,
|
|
||||||
class = "librewolf",
|
|
||||||
},
|
},
|
||||||
|
|
||||||
idle_inhibit = "always",
|
idle_inhibit = "always",
|
||||||
@@ -67,7 +74,13 @@ hl.window_rule({
|
|||||||
hl.window_rule({
|
hl.window_rule({
|
||||||
match = {
|
match = {
|
||||||
fullscreen_state_client = 4,
|
fullscreen_state_client = 4,
|
||||||
fullscreen_state_internal = 4,
|
},
|
||||||
|
|
||||||
|
idle_inhibit = "always",
|
||||||
|
})
|
||||||
|
|
||||||
|
hl.window_rule({
|
||||||
|
match = {
|
||||||
content = "game",
|
content = "game",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -94,7 +94,7 @@
|
|||||||
"desktopIcons": false,
|
"desktopIcons": false,
|
||||||
"dateFormat": "ddd d MMM - hh:mm:ss",
|
"dateFormat": "ddd d MMM - hh:mm:ss",
|
||||||
"color": {
|
"color": {
|
||||||
"mode": "light",
|
"mode": "dark",
|
||||||
"smart": false,
|
"smart": false,
|
||||||
"scheduleDark": true,
|
"scheduleDark": true,
|
||||||
"scheduleHyprsunset": true,
|
"scheduleHyprsunset": true,
|
||||||
@@ -434,5 +434,21 @@
|
|||||||
],
|
],
|
||||||
"pinnedOnStartup": false,
|
"pinnedOnStartup": false,
|
||||||
"ignoredAppRegexes": []
|
"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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user