hyprland: put the terminal scratchpad back at 80%

This commit is contained in:
rope 2026-08-19 19:58:20 +01:00
parent 90db91f178
commit 4e3d96256a
2 changed files with 14 additions and 24 deletions

View file

@ -397,7 +397,7 @@ in
name = "scratchpad-inset",
match = { class = "^dev.fred.scratchpad$" },
float = true,
size = "60% 60%",
size = "80% 80%",
center = true,
})
@ -443,7 +443,12 @@ in
-- Apps
hl.bind(mod .. " + T", hl.dsp.exec_cmd("ghostty"))
hl.bind(mod .. " + E", hl.dsp.exec_cmd("nemo"))
-- Yazi in a terminal, not nemo: it re-themes with ghostty's
-- palette instead of needing a GTK restart. Nemo stays one key
-- away on Super+N it is the only one of the two that can drag
-- a file into a browser.
hl.bind(mod .. " + E", hl.dsp.exec_cmd("ghostty -e yazi"))
hl.bind(mod .. " + N", hl.dsp.exec_cmd("nemo"))
hl.bind(mod .. " + R", hl.dsp.exec_cmd("${pkgs.quickshell}/bin/qs ipc call launcher toggle"))
hl.bind(mod .. " + Q", hl.dsp.window.close())
hl.bind(mod .. " + SHIFT + E", hl.dsp.exit())