Sawfish
Scripts quick access edit this

Synopsis[]

Working with Netscape windows.

Description[]

This script provides a method of finding netscape windows and working with them (currently th only thing you can do is get at an URL, if I find other useful things I'll add them).

Installation[]

  1. Install Wclass.
  2. Save navigator.jl in your load-path.
  3. Add this to your ~/.sawfishrc:
    (require 'navigator)

Configuration[]

I find navigator-url really useful in conjunction with sawfish.el and emacs. Using code like this:

(defun insert-navigator-url ()
  (interactive)
  (let ((url (sawfish-code (navigator-url))))
    (when url
      (insert url))))

in emacs I can bind a key that inserts the URL that the first navigator window is looking at.