1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
diff --git a/src/browser.c b/src/browser.c
index f91901f..28b0c2b 100644
--- a/src/browser.c
+++ b/src/browser.c
@@ -35,23 +35,16 @@ static struct browser browsers[] = {
NULL, NULL
},
{
- /* tested with Firefox 1.5 and 2.0 */
- "firefox", "Firefox", "firefox \"%s\"",
- NULL, "firefox -a firefox -remote \"openURL(%s)\"",
- NULL, "firefox -a firefox -remote 'openURL(%s,new-window)'",
- NULL, "firefox -a firefox -remote 'openURL(%s,new-tab)'"
+ "iceweasel", "Iceweasel", "iceweasel %s",
+ NULL, "iceweasel \"%s\"",
+ NULL, "iceweasel -new-window \"%s\"",
+ NULL, "iceweasel -new-tab \"%s\""
},
{
- "google-chrome", "Chrome", "google-chrome \"%s\"",
- NULL, NULL,
- NULL, NULL,
- NULL, NULL
- },
- {
- "opera", "Opera", "opera \"%s\"",
- "opera \"%s\"", "opera -remote \"openURL(%s)\"",
- "opera -newwindow \"%s\"", NULL,
- "opera -newpage \"%s\"", NULL
+ "icecat", "Icecat", "icecat %s",
+ NULL, "icecat \"%s\"",
+ NULL, "icecat -new-window \"%s\"",
+ NULL, "icecat -new-tab \"%s\""
},
{
"epiphany", "Epiphany", "epiphany \"%s\"",
@@ -60,13 +53,6 @@ static struct browser browsers[] = {
"epiphany -n \"%s\"", NULL
},
{
- /* tested with SeaMonkey 1.0.6 */
- "mozilla", "Mozilla", "mozilla %s",
- NULL, "mozilla -remote openURL(%s)",
- NULL, "mozilla -remote 'openURL(%s,new-window)'",
- NULL, "mozilla -remote 'openURL(%s,new-tab)'"
- },
- {
"konqueror", "Konqueror", "kfmclient openURL \"%s\"",
NULL, NULL,
NULL, NULL,
|