aboutsummaryrefslogtreecommitdiff
path: root/xwicd
blob: 3dd895488694af20a581ce6c890eeda732fe9c49 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
#
# Start wicd if on laptop boxes.
#

if laptop-detect; then
  if which wicd-gtk &> /dev/null; then
    wicd-gtk --tray
  fi
fi