mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-26 06:37:21 +10:00
10 lines
286 B
Bash
Executable file
10 lines
286 B
Bash
Executable file
REPO_ROOT=$(dirname $(realpath $0))/..
|
|
|
|
# Export desktop environment shell configuration
|
|
export $($REPO_ROOT/scripts/environment.sh)
|
|
|
|
# Remove all non desktop environment containers
|
|
docker ps -a | \
|
|
grep -v " $DESKTOP_ENVIRONMENT_CONTAINER" | \
|
|
cut -b 1-20 | \
|
|
xargs docker rm -f
|