Jump to content

ezroller

Members
  • Posts

    877
  • Joined

  • Last visited

Posts posted by ezroller

  1. This is the function that contains that. Its at the end, but part of something else. when I replace this, I get errors:

     

    # If you are not using ddd, gdb and know of a way to convey the arguments 
    
    # over to the prog then add that here- Gagan Saksena 03/15/00
    
           case `basename $debugger` in
    
               gdb) echo "$debugger $prog -x /tmp/mozargs$$"
    
                   $debugger "$prog" -x /tmp/mozargs$$
    
     exitcode=$?
    
                  ;;
    
               ddd) echo "$debugger --debugger "gdb -x /tmp/mozargs$$" $prog"
    
                   $debugger --debugger "gdb -x /tmp/mozargs$$" "$prog"
    
     exitcode=$?
    
                  ;;
    
               *) echo "$debugger $prog ${1+"$@"}"
    
                   $debugger "$prog" ${1+"$@"}
    
     exitcode=$?
    
                  ;;
    
           esac
    
           /bin/rm /tmp/mozargs$$
    
       else
    
           echo "Could not find a debugger on your system." 
    
       fi
    
    }

  2. you could also just run the gnome taskbar in kde...I forget what its called, but its just like any other app. You can call the taskbars up regardless of what WM you are using. That way, you could still be in KDE, and have both of the clocks.

  3. I think in effect, you would have to set up X so that it had dual head support. but I could be wrong. I have an extra laptop here at work. I'll see if I can't reproduce the problem and make some sense of it.

     

    Let me understand this: you wanna use the keyboard on the laptop and the trackpad right? its just the monitor you wanted.

  4. here's my whole thing from 9.1

     

    # /etc/profile -*- Mode: shell-script -*-
    
    # (c) MandrakeSoft, Chmouel Boudjnah <chmouel@mandrakesoft.com>
    
    
    
    loginsh=1
    
    
    
    # Users generally won't see annoyng core files
    
    [ "$UID" = "0" ] && ulimit -S -c 1000000 > /dev/null 2>&1
    
    
    
    if ! echo ${PATH} |grep -q /usr/X11R6/bin; then
    
       PATH="$PATH:/usr/X11R6/bin"
    
    fi
    
    
    
    if [ "$UID" -ge 500 ] && ! echo ${PATH} |grep -q /usr/games; then
    
       export PATH=$PATH:/usr/games
    
    fi
    
    
    
    umask 022
    
    
    
    USER=`id -un`
    
    LOGNAME=$USER
    
    MAIL="/var/spool/mail/$USER"
    
    HISTCONTROL=ignoredups
    
    HOSTNAME=`/bin/hostname`
    
    HISTSIZE=1000
    
    
    
    if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
    
       INPUTRC=/etc/inputrc
    
    fi
    
    
    
    # some old programs still use it (eg: "man"), and it is also
    
    # required for level1 compliance for LI18NUX2000
    
    NLSPATH=/usr/share/locale/%l/%N
    
    
    
    export PATH PS1 USER LOGNAME MAIL HOSTNAME INPUTRC NLSPATH
    
    export HISTCONTROL HISTSIZE
    
    
    
    for i in /etc/profile.d/*.sh; do
    
    if [ -x $i ]; then
    
     . $i
    
    fi
    
    done
    
    
    
    unset i

  5. I'm running the new rc3 version of mozilla and here is my problem.

     

    When I have a navigator winodw open, and try to run the mail app from another icon on my desktop, it pops the mozilla profile manager. how can I get it to stop doing this and just give me my damn mozilla mail?

     

    :evilmod:

×
×
  • Create New...