Guest User

Untitled

a guest
Jun 24th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.42 KB | None | 0 0
  1. #!/usr/bin/tclsh
  2. ## TCL (Chrome Paste Script)
  3.  
  4. weechat::register "paste" "znf" "0.1" "GPL3" "Paste from Chrome" "" ""
  5. weechat::print "" "Hello, from Chrome Paste!"
  6.  
  7. weechat::hook_timer 1000 0 0 "paste_stuff" ""
  8.  
  9. proc paste_stuff {} {
  10.    foreach file [glob -directory /var/www/paste/ -type f -nocomplain *.chatoo] {
  11.       set url [read $file]
  12.       weechat::print "" "$url"
  13.    }
  14.    return $::weechat::WEECHAT_RC_OK
  15. }
Add Comment
Please, Sign In to add comment