1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-09 23:32:10 -04:00

keybinds: fix sh, fix screenshot-window options, empty args

part of #914
This commit is contained in:
bbedward
2026-01-12 09:35:30 -05:00
parent 1280bd047d
commit 49b322582d
4 changed files with 60 additions and 27 deletions

View File

@@ -501,8 +501,12 @@ Singleton {
return Actions.buildSpawnAction(command, args);
}
function buildShellAction(shellCmd) {
return Actions.buildShellAction(currentProvider, shellCmd);
function buildShellAction(shellCmd, shell) {
return Actions.buildShellAction(currentProvider, shellCmd, shell);
}
function getShellFromAction(action) {
return Actions.getShellFromAction(action);
}
function parseSpawnCommand(action) {