On Tue, Oct 13, 2009 at 12:23 PM, Christopher Roy Bratusek <[email protected]> wrote: > Well I've figured out a better thing for my purpose: > > ( define ( add-screenlets-matcher wm-name pos) > ( add-window-matcher 'WM_NAME wm-name > '( position . pos ) > '( fixed-position . t ) > '( sticky . t ) > '( sticky-viewport . t ) > '( cycle-skip . t ) > '( depth . -2 ) > '( never-maximize . t ) > '( never-iconify . t ) ) ) > > except that I'm not sure how to pass pos, as neither > > ( add-screenlets-matcher "FolderViewScreenlet.py" "south-west" ) > > or > > ( add-screenlets-matcher "FolderViewScreenlet.py" 'south-west )
Maybe that's because you need to use `(position . ,pos) ? -Nathan
