switches terminal to own special workspace

This commit is contained in:
2026-08-06 20:21:02 +02:00
parent 6909f9fc20
commit 97fb8472f2
3 changed files with 15 additions and 2 deletions
+3 -1
View File
@@ -10,7 +10,7 @@ local mainMod = "SUPER"
-- Example binds, see https://wiki.hypr.land/Configuring/Binds/ for more
-- KeyBinds
-- Open
hl.bind(mainMod .. " + T", hl.dsp.exec_cmd(TERMINAL, {float = true, size = {1920, 1080}})) -- Open Terminal
--hl.bind(mainMod .. " + T", hl.dsp.exec_cmd(TERMINAL, {float = true, size = {1920, 1080}})) -- Open Terminal
hl.bind(mainMod .. " + E", hl.dsp.exec_cmd(FILEMANAGER)) -- Open File Manager
hl.bind(mainMod .. " + Q", hl.dsp.exec_cmd(BROWSER)) -- Open Browser
hl.bind(mainMod .. " + space", hl.dsp.exec_cmd(MENU)) -- Open Menu
@@ -85,6 +85,8 @@ hl.bind(mainMod .. " + SHIFT + 0", hl.dsp.window.move({ workspace = 10 })) -- Mo
hl.bind(mainMod .. " + S", hl.dsp.workspace.toggle_special("magic")) -- Focus Magic Workspace
hl.bind(mainMod .. " + SHIFT + S", hl.dsp.window.move({ workspace = "special:magic" })) -- Move to Magic Workspace
hl.bind(mainMod .. " + T", hl.dsp.workspace.toggle_special("term"))
-- Capture
hl.bind(mainMod .. " + F9", hl.dsp.exec_cmd("hyprshot -m region"))
hl.bind(mainMod .. " + SHIFT + F9", hl.dsp.exec_cmd("hyprshot -m window"))