summaryrefslogtreecommitdiff
path: root/plugin/blinkyfications.pl
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/blinkyfications.pl')
-rw-r--r--plugin/blinkyfications.pl47
1 files changed, 47 insertions, 0 deletions
diff --git a/plugin/blinkyfications.pl b/plugin/blinkyfications.pl
new file mode 100644
index 0000000..172e9b3
--- /dev/null
+++ b/plugin/blinkyfications.pl
@@ -0,0 +1,47 @@
+#
+# blinkyfication
+#
+#
+# Copyright (C) 2016 Christian Pointner <equinox@spreadspace.org>
+#
+# This file is part of blinkyfication.
+#
+# blinkyfication is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3
+# as published by the Free Software Foundation.
+#
+# blinkyfication is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with blinkyfication. If not, see <http://www.gnu.org/licenses/>.
+#
+use Purple;
+
+%PLUGIN_INFO = (
+ perl_api_version => 2,
+ name => "blinkyfications",
+ version => "0.1",
+ summary => "Make notifications blink again!",
+ description => "Blink when there are messages or other events.",
+ author => "Christian Pointner <equinox\@spreadspace.org>",
+ url => "https://git.spreadspace.org/blinkyfications.git",
+ load => "plugin_load",
+ unload => "plugin_unload"
+);
+
+sub plugin_init {
+ return %PLUGIN_INFO;
+}
+
+sub plugin_load {
+ my $plugin = shift;
+ Purple::Debug::info("blinkyfications", "make notifications blink again!\n");
+}
+
+sub plugin_unload {
+ my $plugin = shift;
+ Purple::Debug::info("blinkyfications", "i get it, i'm just too damn blinky... bye-bye!\n");
+}