Skip to content
Snippets Groups Projects
Commit 43b8b066 authored by Fabian Homborg's avatar Fabian Homborg
Browse files

Add shortcut to toggle window border

Defaults to Meta+U
parent d4b3cf16
No related branches found
No related tags found
No related merge requests found
......@@ -171,6 +171,17 @@ function TilingManager() {
self.tiles.addClient(client);
}
});
registerShortcut("Toggle Border",
"Toggle Border",
"Meta+U",
function() {
var client = workspace.activeClient;
if (client == null) {
print("No active client");
return;
}
client.noBorder = ! client.noBorder;
});
registerShortcut("Switch Focus Left",
"Switch Focus Left",
"Meta+H",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment