Changeset 180
- Timestamp:
- 09/07/2005 07:18:03 PM (3 years ago)
- Files:
-
- 1 modified
-
trunk/examples/plpwm.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/plpwm.py
r179 r180 1 1 #!/usr/bin/env python 2 # $Id: plpwm.py,v 1. 39 2005-08-10 13:30:36mwm Exp $2 # $Id: plpwm.py,v 1.40 2005-09-08 00:18:03 mwm Exp $ 3 3 # 4 4 # plpwm.py -- Example PLWM window manager configuration with panes. … … 168 168 169 169 def M4_f(my, event): 170 getapp(my.wm.panes_list[my.wm.panes_current], "Firefox", "firefox") 170 # Damn Firefox doesn't set the title properly when running tabbed, 171 # just uses "firefox-bin". So we chop the leading F off. 172 getapp(my.wm.panes_list[my.wm.panes_current], "irefox", "firefox") 171 173 172 174 def M4_g(my, event): … … 180 182 181 183 def M4_i(my, event): 184 websearch(my.wm.panes_list[my.wm.panes_current], MyEditHandler, 185 "IMDB", paneWindow, 186 "http://www.imdb.com/find?tt=on;nm=on;mx=20;q=%s") 187 188 def M4_I(my, event): 182 189 def firefox(url): 183 190 assert "'" not in url
