source: trunk/third/xalf/FAQ @ 15574

Revision 15574, 2.0 KB checked in by ghudson, 24 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r15573, which included commits to RCS files with non-trunk default branches.
Line 
1Frequently Asked Questions
2--------------------------
3
4Q1. When starting Xmms a second time, the indicator shows for 20 seconds.
5A1. This is because Xmms by default doesn't allow multiple instances running at
6the same time. If you want multiple instances, edit ~/.xmms/config and
7make sure allow_multiple_instances is set to TRUE. If you want to
8control an already running instances even when running xmms through
9xalf, you can create an wrapper script like this:
10
11#!/bin/sh
12if [ -S /tmp/xmms_${USER}.0 ]; then
13 xalfoff
14 /usr/bin/xmms $*
15else
16 /usr/bin/xmms $*
17fi
18 
19Q2. When launching a second instance of Netscape, the indicator shows
20for 20 seconds (timeout).
21A2. On RedHat systems, /usr/bin/netscape is a shellscript that opens a
22new window instead of starting a new process. By making some small
23changes to this script (so that xalfoff is called), one can get the
24desired behavior. A patched script is included as extras/netscape.
25
26Q3. (GNOME without using build-in hooks) Running terminalbased
27applications with Xalf from Gnome via "Run in terminal" option behaves
28strange.
29A3. This is because the command executed is:
30
31xterm -e xalf <command>
32
33It should be:
34
35xalf xterm -e <command>
36
37Do not use "Run in terminal" option, but the second form.
38
39Q4. One of my applications crashes when run via Xalf.
40A4. This has been observed with Acrobat Reader 4.00 and Applixware
414.3. Acrobat Reader 4.05 and newer versions of Applixware seems to
42work fine. I'm not sure if these problems are caused by bugs in the
43applications or if Xalf is doing something bad. Please report all
44crashes or other Xalf related problems.
45
46Q5. When launching gmc or gnome-terminal, the indicator shows
47for 20 seconds (timeout).
48A5. These applications does not start new processes, but creates new
49windows. Change "Exec=gmc" in /usr/share/gnome/apps/Gmc.desktop to
50"Exec=NO_XALF gmc". In
51/usr/share/gnome/apps/System/gnome-terminal.desktop, set
52"NO_XALF Exec=gnome-terminal --use-factory --start-factory-server" or "Exec=gnome-terminal".
53
54
55---
56Didn't you find an answer to your question? Contact me, then.
57
58
Note: See TracBrowser for help on using the repository browser.