first commit

This commit is contained in:
guinux
2014-10-22 18:44:02 +02:00
commit 60a34f6681
69 changed files with 9721 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/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-refresh
;;
esac