Wezterm pane/tab closing keys
This commit is contained in:
parent
0225aa2010
commit
39e94c820f
2 changed files with 14 additions and 4 deletions
|
@ -105,6 +105,16 @@ config.keys = {
|
||||||
mods = 'CTRL|SHIFT',
|
mods = 'CTRL|SHIFT',
|
||||||
action = wezterm.action.ActivateCommandPalette
|
action = wezterm.action.ActivateCommandPalette
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key = 'w',
|
||||||
|
mods = 'CTRL|SHIFT',
|
||||||
|
action = wezterm.action.CloseCurrentPane { confirm = true },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key = 'w',
|
||||||
|
mods = 'CTRL|ALT|SHIFT',
|
||||||
|
action = wezterm.action.CloseCurrentTab { confirm = true },
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key = 'l',
|
key = 'l',
|
||||||
mods = 'CTRL|SHIFT|ALT',
|
mods = 'CTRL|SHIFT|ALT',
|
||||||
|
|
|
@ -187,10 +187,10 @@ in {
|
||||||
powerOnBoot = false;
|
powerOnBoot = false;
|
||||||
};
|
};
|
||||||
powerManagement.cpuFreqGovernor = "ondemand";
|
powerManagement.cpuFreqGovernor = "ondemand";
|
||||||
powerManagement.resumeCommands = ''
|
# powerManagement.resumeCommands = ''
|
||||||
modprobe -rv mt7921e
|
# modprobe -rv mt7921e
|
||||||
modprobe -v mt7921e
|
# modprobe -v mt7921e
|
||||||
'';
|
# '';
|
||||||
|
|
||||||
services.power-profiles-daemon = {
|
services.power-profiles-daemon = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue