1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-23 22:52:33 +01:00
Files
wicd/in/scripts=wicd-curses.in
Andrew Psaltis 45eae059e5 Made the wicd-curses script add WHEREAREMYFILES
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
2009-03-06 19:28:09 -05:00

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 $@