mirror of
https://codeberg.org/hyperreal/bin
synced 2024-11-01 16:43:08 +01:00
9 lines
206 B
Bash
Executable File
9 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
# distrobox_binary
|
|
# name: "default0"
|
|
if [ ! -f /run/.containerenv ] && [ ! -f /.dockerenv ]; then
|
|
/usr/local/bin/distrobox-enter -n "default0" -- /bin/emacs $@
|
|
else
|
|
/bin/emacs $@
|
|
fi
|