mirror of
https://github.com/0intro/wmii
synced 2024-11-22 22:02:30 +03:00
11 lines
177 B
Bash
11 lines
177 B
Bash
#!/bin/sh
|
|
# clean the environment and execute the given command
|
|
|
|
PATH=$OLD_PATH export PATH
|
|
unset OLD_PATH
|
|
unset WMII_FONT
|
|
unset WMII_NORMCOLORS
|
|
unset WMII_SELCOLORS
|
|
|
|
exec "$@"
|