From 9ce71b5e852a817165fc0acc608f64b0a2729dbc Mon Sep 17 00:00:00 2001 From: John Mertz Date: Sun, 11 Dec 2022 14:29:49 -0500 Subject: [PATCH] Restore 'toolbox' command for default distrobox --- toolbox.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 toolbox.sh diff --git a/toolbox.sh b/toolbox.sh new file mode 100755 index 0000000..d34e0c9 --- /dev/null +++ b/toolbox.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +if [ -z $1 ]; then + distrobox enter -n toolbox +else + distrobox $@ -n toolbox +fi