Restore 'toolbox' command for default distrobox

This commit is contained in:
John Mertz 2022-12-11 14:29:49 -05:00
parent 239017d00c
commit 9ce71b5e85
1 changed files with 7 additions and 0 deletions

7
toolbox.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
if [ -z $1 ]; then
distrobox enter -n toolbox
else
distrobox $@ -n toolbox
fi