pamac-classic/data/networkmanager/99_update_pamac_tray
2013-02-27 15:15:51 +01:00

11 lines
198 B
Bash
Executable File

#!/bin/sh
INTERFACE=$1 # The interface which is brought up or down
STATUS=$2 # The new state of the interface
case "$STATUS" in
'up') # $INTERFACE is up
/usr/bin/pamac-check-updates
;;
esac