Configuring

This commit is contained in:
2026-05-13 22:01:05 +01:00
parent 2baffa81af
commit 6507227497
6 changed files with 29 additions and 15 deletions
@@ -28,7 +28,7 @@ function GetEntries()
-- Directories to search
local dirs = {
home .. "/Tower/Library/Pictures/Wallpapers/3840x2160",
home .. "/Tower/Library/Pictures/Wallpapers/7680x2160",
}
-- Track added files to avoid duplicates
@@ -36,8 +36,9 @@ function GetEntries()
for _, wallpaper_dir in ipairs(dirs) do
local handle = io.popen(
"find " .. ShellEscape(wallpaper_dir)
.. " -maxdepth 1 -type f \\( -name '*.jpg' -o -name '*.jpeg' -o -name '*.png' -o -name '*.gif' -o -name '*.bmp' -o -name '*.webp' \\) 2>/dev/null | sort"
"find "
.. ShellEscape(wallpaper_dir)
.. " -maxdepth 1 -type f \\( -name '*.jpg' -o -name '*.jpeg' -o -name '*.png' -o -name '*.gif' -o -name '*.bmp' -o -name '*.webp' \\) 2>/dev/null | sort"
)
if handle then
for background in handle:lines() do
+5 -10
View File
@@ -36,23 +36,20 @@ bindld = SUPER, XF86AudioMute, Switch audio output, exec, station-cmd-audio-swit
bindd = SUPER, C, Universal copy, sendshortcut, CTRL, Insert,
bindd = SUPER, V, Universal paste, sendshortcut, SHIFT, Insert,
bindd = SUPER, X, Universal cut, sendshortcut, CTRL, X,
bindd = SUPER, A, Universal cut, sendshortcut, CTRL, A,
bindd = SUPER CTRL, V, Clipboard manager, exec, station-launch-walker -m clipboard
# Close windows
bindd = SUPER, Q, Close window, killactive,
bindd = CTRL ALT, DELETE, Close all windows, exec, station-hyprland-window-close-all
# ==========================
# Tiling
# ==========================
bindd = SUPER CTRL, J, Toggle window split, togglesplit, # dwindle
bindd = SUPER, P, Pseudo window, pseudo, # dwindle
bindd = SUPER, T, Toggle window floating/tiling, togglefloating,
bindd = SUPER, F, Full screen, fullscreen, 0
bindd = SUPER CTRL, F, Tiled full screen, fullscreenstate, 0 2
bindd = SUPER ALT, F, Full width, fullscreen, 1
bindd = SUPER, O, Pop window out (float & pin), exec, station-hyprland-window-pop
# bindd = SUPER CTRL, L, Toggle workspace layout, exec, station-hyprland-workspace-layout-toggle
bindd = SUPER CTRL, F, Full width, fullscreen, 1
bindd = SUPER, T, Pop window out (float & pin), exec, station-hyprland-window-pop
bindd = SUPER CTRL, L, Toggle workspace layout, exec, station-hyprland-workspace-layout-toggle
# Move focus with SUPER + arrow keys
bindd = SUPER, H, Move window focus left, movefocus, l
@@ -116,8 +113,6 @@ bindd = SUPER ALT, code:14, Switch to group window 5, changegroupactive, 5
# ==========================
# Utilities
# ==========================
bindd = SUPER, Slash, Cycle monitor scaling, exec, station-hyprland-monitor-scaling-cycle
# Menus
bindd = SUPER, SPACE, Launch apps, exec, station-launch-walker
bindd = SUPER CTRL, E, Emoji picker, exec, station-launch-walker -m symbols
@@ -175,7 +170,7 @@ bindd = SUPER CTRL, Z, Zoom in, exec, hyprctl keyword cursor:zoom_factor $(hyprc
bindd = SUPER CTRL ALT, Z, Reset zoom, exec, hyprctl keyword cursor:zoom_factor 1
# Lock system
bindd = SUPER CTRL, L, Lock system, exec, station-lock-screen
# bindd = SUPER CTRL, L, Lock system, exec, station-lock-screen
# ==========================
# Applications
+14 -2
View File
@@ -8,6 +8,18 @@ profile {
# and use the following:
profile {
time = 20:00
temperature = 1000
gamma = 0.3
temperature = 4000
gamma = 0.8
}
profile {
time = 21:00
temperature = 3000
gamma = 0.5
}
profile {
time = 22:00
temperature = 1000
gamma = 0.4
}
+2
View File
@@ -0,0 +1,2 @@
indent_type="Spaces"
indent_width=4