1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-03 20:18:31 -04:00

qs: large sweep of dead code removals

This commit is contained in:
bbedward
2026-07-26 23:22:22 -04:00
parent bab2078dfd
commit c67b185076
113 changed files with 1467 additions and 3254 deletions
-32
View File
@@ -574,18 +574,6 @@ Singleton {
bindRemoved(key);
}
function isDmsAction(action) {
return Actions.isDmsAction(action);
}
function isValidAction(action) {
return Actions.isValidAction(action);
}
function getActionType(action) {
return Actions.getActionType(action);
}
function getActionLabel(action) {
return Actions.getActionLabel(action, currentProvider);
}
@@ -601,24 +589,4 @@ Singleton {
function getDmsActions() {
return Actions.getDmsActions(CompositorService.isNiri, CompositorService.isHyprland);
}
function buildSpawnAction(command, args) {
return Actions.buildSpawnAction(command, args);
}
function buildShellAction(shellCmd, shell) {
return Actions.buildShellAction(currentProvider, shellCmd, shell);
}
function getShellFromAction(action) {
return Actions.getShellFromAction(action);
}
function parseSpawnCommand(action) {
return Actions.parseSpawnCommand(action);
}
function parseShellCommand(action) {
return Actions.parseShellCommand(action);
}
}