Skip to content

Commit

Permalink
revert config file to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
neomilium committed Feb 22, 2010
1 parent f791f1e commit d46f6de
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions conf/nfc-eventd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ nfc-eventd {
speed = 115200;
}

# which device to use ? note: if this part is commented out, nfc-eventd will try to pick up device automagically...
#nfc_device = "my_touchatag";

# list of events and actions
Expand All @@ -41,13 +40,15 @@ nfc-eventd {

# You can enter several, comma-separated action entries
# they will be executed in turn
action = "(echo -n 'Tag (uid=$TAG_UID), inserted at: ' && date) >> /tmp/nfc-eventd.log";
action = "(echo -n 'Tag (uid=$TAG_UID), inserted at: ' && date) >> /tmp/nfc-eventd.log",
"dcop kdesktop KScreensaverIface quit";
}

# Tag has been removed
event tag_remove {
on_error = ignore;
action = "(echo -n 'Tag (uid=$TAG_UID) removed at: ' && date) >> /tmp/nfc-eventd.log";
action = "(echo -n 'Tag (uid=$TAG_UID) removed at: ' && date) >> /tmp/nfc-eventd.log",
"dcop kdesktop KScreensaverIface lock";
}

# Too much time card removed
Expand Down

0 comments on commit d46f6de

Please sign in to comment.