aboutsummaryrefslogtreecommitdiff
path: root/xnm-tray
blob: 6eec120caf6e3f36c0fc837b19c5fad735aa13bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
#
# Start nm-tray if on laptop boxes.
#

if laptop-detect; then
  if which nm-tray &> /dev/null; then
    # Sleep a while until a tray should be available
    sleep 5

    # Then start nm-tray with a fix
    # See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=983536
    XDG_CURRENT_DESKTOP=GNOME nm-tray
  fi
fi