Skip to content

Commit

Permalink
update configuration file (remove KDE3 related command, add comment a…
Browse files Browse the repository at this point in the history
…bout device autodetection.)
  • Loading branch information
neomilium committed Feb 22, 2010
1 parent d46f6de commit 5ff0160
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions conf/nfc-eventd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ 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 @@ -40,15 +41,13 @@ 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",
"dcop kdesktop KScreensaverIface quit";
action = "(echo -n 'Tag (uid=$TAG_UID), inserted at: ' && date) >> /tmp/nfc-eventd.log";
}

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

# Too much time card removed
Expand Down

0 comments on commit 5ff0160

Please sign in to comment.