2 -- Options to get some programs work more nicely (or at all)
8 instance
= "documentShell",
15 instance
= "openDialog_popup",
19 -- Better would be to apply these settings automatically whenever a window
20 -- has type _NET_WM_WINDOW_TYPE_NOTIFICATION
22 class
= "Xfce4-notifyd",
29 -- Put all dockapps in the statusbar's systray, also adding the missing
30 -- size hints necessary for this to work.
33 statusbar
= "systray",
34 max_size
= { w
= 64, h
= 64},
35 min_size
= { w
= 64, h
= 64},
39 -- You might want to enable these if you really must use XMMS.
43 instance = "XMMS_Playlist",
44 transient_mode = "off"
49 instance = "XMMS_Player",
50 transient_mode = "off"
56 -- Define some additional title shortening rules to use when the full
57 -- title doesn't fit in the available space. The first-defined matching
58 -- rule that succeeds in making the title short enough is used.
59 ioncore
.defshortening("(.*) - Mozilla(<[0-9]+>)", "$1$2$|$1$<...$2")
60 ioncore
.defshortening("(.*) - Mozilla", "$1$|$1$<...")
61 ioncore
.defshortening("XMMS - (.*)", "$1$|...$>$1")
62 ioncore
.defshortening("[^:]+: (.*)(<[0-9]+>)", "$1$2$|$1$<...$2")
63 ioncore
.defshortening("[^:]+: (.*)", "$1$|$1$<...")
64 ioncore
.defshortening("(.*)(<[0-9]+>)", "$1$2$|$1$<...$2")
65 ioncore
.defshortening("(.*)", "$1$|$1$<...")