mirror of
https://github.com/gryf/wicd.git
synced 2025-12-23 22:52:33 +01:00
Moved WHEREAREMYFILES to /var/lib/wicd, and adapted setup.py, wpath.py, and the wicd-client script to support it Fixed a typo in setup.py
10 lines
266 B
Bash
Executable File
10 lines
266 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -d "$HOME/.wicd" ]; then
|
|
mkdir -p "$HOME/.wicd"
|
|
fi
|
|
if [ -e "%VARLIB%WHEREAREMYFILES" ] && [ ! -L "$HOME/.wicd/WHEREAREMYFILES" ]; then
|
|
ln -s "%VARLIB%WHEREAREMYFILES" "$HOME/.wicd/WHEREAREMYFILES"
|
|
fi
|
|
|
|
exec python -O %LIB%wicd-curses.py $@
|