summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJari Matilainen2016-04-18 14:59:02 +0200
committerJari Matilainen2016-04-18 14:59:02 +0200
commitd27f1944014558086a0539495c45e39878ecd6f4 (patch)
treef5260d2d1d10dcb615fe0d42c440e6ec6b62ae56 /scripts
parent726b046a3c616a0d50a220aad72e3459bef334f1 (diff)
downloadscripts.irssi.org-d27f1944014558086a0539495c45e39878ecd6f4.tar.bz2
autorun scripts in the autorun directory
Diffstat (limited to 'scripts')
-rw-r--r--scripts/autorun_scripts.pl60
1 files changed, 60 insertions, 0 deletions
diff --git a/scripts/autorun_scripts.pl b/scripts/autorun_scripts.pl
new file mode 100644
index 0000000..1e6343f
--- /dev/null
+++ b/scripts/autorun_scripts.pl
@@ -0,0 +1,60 @@
+### vague's note: original script by nightfrog, below is nightfrog's notes on this
+###
+### Usage note:
+### For best performance, make sure Linux::Inotify2 is installed, File::ChangeNotify
+### doesn't have a dependency on it and if Linux::Inotify2 isn't installed
+### File::ChangeNotify will fall back to using File::ChangeNotify::Watcher::Default
+### which is a poor choice and rarely works
+###
+### The script will attempt to autorun newly created or modified files in the
+### autorun directory, it will also unload scripts that are deleted from the
+### autorun directory
+#
+# Author : nightfrog
+# Version: 1
+#
+# Watch the scripts directory for changes and handle them accordingly.
+#
+# If you are adding/deleting/changing scripts on a regular basis then this is handy
+#
+# Why I created this..
+# When I'm creating a script I will keep Irssi open in a terminal and an editor in
+# another side by side. When I save my changes in the editor this script will reload
+# it for me and I will be able to look at the Irssi terminal and see if I get errors
+# or not. If not, I can go to Irssi and test my creation.
+
+# ---- NOTE ---- #
+# Symlink them to autorun like http://scripts.irssi.org recommends
+
+
+use strict;
+use warnings;
+use File::Spec;
+use File::ChangeNotify;
+use File::Basename qw( basename );
+use Irssi qw(timeout_add command get_irssi_dir);
+
+my $watch = File::ChangeNotify->instantiate_watcher(
+ directories => [
+ File::Spec->catdir( get_irssi_dir() . '/scripts/autorun' ),
+ ],
+ filter => qr/\.(?:pl)$/,
+ follow_symlinks => 1,
+);
+
+timeout_add( 1000, sub {
+ for my $events ( $watch->new_events() ) {
+ if ( $events->type eq 'modify' ){ # reload
+ Irssi::print('Reloading ' . basename $events->path);
+ command( 'script load ' . basename $events->path );
+ }
+ if ( $events->type eq 'create' ) { # load
+ Irssi::print('Loading ' . basename $events->path);
+ command( 'script load ' . basename $events->path );
+ }
+ if ( $events->type eq 'delete' ) { # delete
+ Irssi::print('Unloading ' . basename $events->path);
+ command( 'script unload ' . basename $events->path );
+ }
+ }
+}, undef);