[SOLVED] DWM running with gnome difficulties - cracked leaving GNOME!

UPDATE: concept as a perceived requirement has been scrubed. No longer needing Gnome's environment ... just some gtk/gnome libraries here and there though, obviously. See last post of mine here if ya like and you're rushed a bit.
Having problems getting gnome to live with DWM though I can compile myself as i just learned how from the wiki.
OBJECTIVE: retain at least the bottom menu bar of gnome (and program access) for a while yet ....  while using DWM.
Hi... having the most amazing time with Xmonad, awesome, stumpwm, dmenu etc.
At this point I've realized that Xmonad and DWM have basically the same keybinding.
For how it work WELL, as it's an originator, and keeping it simple ummm.... was it 18k or 180k?  hehehe  (see other posts about dwm) I'm going to go with dwm for the forseeable future. they're all great though having done the studying it's really a simple decision.... If I wanted to swap to something else later I'd have the skill to know how simple that would be... dwm does cover ALL of what I sensibly need to work quickly and SIMPLY/manageably...
DUE TO UPDATE COMMENT AT TOP  - SOME OF THE NEXT COUPLE OF POST IS REDUNDANT a BIT though maybe not:
So... I'm wishing to be able to access my folders and programs through the gnome menu as a fail-safe until I figure out how to get around any gottcha before I reinstall WITHOUT gnome (just some of the libraries obviously for packages that need them)
I really need to get going immediately with DWM and having had lots of fun with Xmonad (works easily with gnome though i like the simplicity of default DWM) ...
ALL I really need is what I now have left of gnome's desktop visibility which is the bottom bar with a menu applet embeded in it...
Actually.... IF there's a way to GRAPHICALLY see folders ie. boot programs without having to find the binary though would be cool.
Gnome can do it's thing in the background.... though right now ALL I can get by adding DWM WITH metacity in the gnome sessions properties leaves me WITHOUT the bootom bar that gets me to my programs...
yep, duh.
any assistance apreciated as I can't stand working without dwm (or similar tiling wm) though I'm too new at it and generally not skilled enough at this move to get to my program's ICONS...  using dmenu for all booting just isn't practical for me today..  then again who knows what the next hour will bring! hehehe
So..... ANYONE have DWM code that'll work??? .... I think I'd prefer it to be stock otherwise...
whatver happens thanks and everything's so cool.... have learned SO much....
Last edited by yvonney (2009-02-03 09:44:22)

well as i remember, my own path was something like this...
Windozes -> PCLinuxOS -> (K-X)Ubuntu -> Arch(XFCE4(desktop environment)) -> Arch(Fluxbox(no DE)) -> Arch(wmii+gnu/screen) -> Arch(dwm+gnu/screen)
not talking about GNU/screen its like not talking about breathing to me right now at the beggining (like all i pass throught in GNU/linux) i can barely understand something "as complex" to understand like screen, but using it, showed me that EVERYTHING is a matter of understanding throught direct experience
so i'll recommend to you that you start looking to gnu/screen, is so damn easy to configure/use once you understand it, but difficult when you start reading about it, like dwm is in first place
what i do for file assosiations and such is using midnight commander (cli-file manager) and i edited a menu (F2 on a dir/file) and it popups showing the list of apps that i configured to open that file extension, i configured tuxcmd in the past but i didnt used it for months now...
here's the ~/.mc/menu i did... (i use urxvt as a daemon starting "urxvtd -q -f -o &" in .xinit, you may change "urxvtc" with your terminal emulator of choice... (i hope it will be urxvt(c) and not something like gnome-terminal )
shell_patterns=0
+ ! t t
@ Do something on the current file
CMD=%{Enter command}
$CMD %f
7 compress to 7zip (dir27z)
urxvtc -e dir27z %f &
@ compress file to zip (file2zip)
urxvtc -e file2zip %f &
@ compress dir to zip (dir2zip)
urxvtc -e dir2zip %f &
@ dir to iso (mkisofs -V volume_name -J -r -o isoimage.iso)
urxvtc -e mkisofs -V NEW -J -r -o isoimage.iso %f &
s make symlink in /tmp/burn (mksym)
mksym %f &
x make executable (chmod 755)
chmod 755 %f
r chown -cR root:root
sudo chown -cR root:root %f
a chown -cR aleyscha:users
sudo chown -cR aleyscha:users %f
u mount /dev/cdrom
mount /dev/cdrom
u umount /dev/cdrom
umount /dev/cdrom
u wodim -v dev=/dev/cdrom -blank=fast
urxvtc -e wodim -v dev=/dev/cdrom -blank=fast &
u dd if=/dev/cdrom of=/downloads/New/isoimage.iso
urxvtc -e dd if=/dev/cdrom of=/downloads/New/isoimage.iso &
u unmount ISO Image (fusermount -u /mnt/cdrom)
fusermount -u /mnt/cdrom
u unmount ISO Image (fusermount -u /mnt/iso1)
fusermount -u /mnt/iso1
u unmount ISO Image (fusermount -u /mnt/iso2)
fusermount -u /mnt/iso2
g edit file in gvim as root (sudo gvim %f &)
sudo gvim %f &
c copy (fui %f)
urxvtc -e fui %f &
p paste (fui --copy)
urxvtc -e fui --copy &
p paste (fui --move)
urxvtc -e fui --move &
c clamscan (clamscan --recursive --infected --bell --remove)
urxvtc -e clamscan --recursive --infected --bell --remove %f &
b Send via Bluetooth to device (obexftp -b 00:17:D5:85:0D:6F -p)
obexftp -b 00:17:D5:85:0D:6F -p %f &
+ t t
d Do something on the tagged files
set %t; CMD=%{Enter command}
while [ -n "$1" ]; do
$CMD "$1"
shift
done
+ t t
@ Make symlink in /tmp/burn
while [ -n "$1" ]; do
mksym "$1"
shift
done
0 Edit a bug report and send it to root
I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
${EDITOR-vi} $I
test -r $I && mail root < $I
rm -f $I
=+ f \.1$ | f \.3$ | f \.4$ | f \.5$ | f \.6$ | f \.7$ | f \.8$ | f \.man$ & t r
1 Display the file with roff -man
nroff -man %f | less
2 Call the info hypertext browser
info
= t d
3 Compress the current subdirectory (tar.gz)
Pwd=`basename "%d" /`
echo -n "Name of the compressed file (without extension) [$Pwd]: "
read tar
if [ "$tar"x = x ]; then tar="$Pwd"; fi
cd .. && \
tar cf - "$Pwd" | gzip -f9 > "$tar.tar.gz" && \
echo "../$tar.tar.gz created."
4 Compress the current subdirectory (tar.bz2)
Pwd=`basename %d /`
echo -n "Name of the compressed file (without extension) [$Pwd]: "
read tar
if [ "$tar"x = x ]; then tar="$Pwd"; fi
cd .. && \
tar cf - "$Pwd" | bzip2 -f > "$tar.tar.bz2" && \
echo "../$tar.tar.bz2 created."
= f \.c$ & t r
+ f \.c$ & t r & ! t t
5 Compile and link current .c file
make `basename %f .c` 2>/dev/null || cc -O -o `basename %f .c` %f
+ t r & ! t t
a Append file to opposite
cat %f >>%D/%f
+ t t
A Append files to opposite files
set %t
while [ -n "$1" ]; do
cat $1 >>%D/$1
shift
done
+ t r & ! t t
d Delete file if a copy exists in the other directory.
if [ "%d" = "%D" ]; then
echo "The two directores must be different"
exit 1
fi
if [ -f %D/%f ]; then # if two of them, then
if cmp -s %D/%f %f; then
rm %f && echo %f: DELETED
else
echo "%f and %D/%f differ: NOT deleted"
echo -n "Press RETURN "
read key
fi
else
echo %f: No copy in %D/%f: NOT deleted.
fi
+ t t
D Delete tagged files if a copy exists in the other directory.
if [ "%d" = "%D" ]; then
echo "The two directores must be different"
exit 1
fi
for i in %t
do
if [ -f %D/$i ]; then
SUM1="`sum $i`"
SUM2="`sum %D/$i`"
if [ "$SUM1" = "$SUM2" ]; then
rm $i && echo ${i}: DELETED
else
echo $i and %D/$i differ: NOT deleted.
fi
else
echo %f has no copy in %D/%f: NOT deleted.
fi
done
m View manual page
MAN=%{Enter manual name}
%view man -P cat $MAN
= f \.gz$ & t r
+ ! t t
n Inspect gzip'ed newsbatch file
dd if=%f bs=1 skip=12|zcat|${PAGER-more}
# assuming the cunbatch header is 12 bytes long.
= t r &
+ ! t t
h Strip headers from current newsarticle
CHECK=`awk '{print $1 ; exit}' %f` 2>/dev/null
case $CHECK in
Newsgroups:|Path:)
I=`mktemp ${MC_TMPDIR:-/tmp}/news.XXXXXX` || exit 1
cp %f $I && sed '/^'"$CHECK"' /,/^$/d' $I > %f
[ "$?" = "0" ] && rm $I
echo %f: header removed
echo %f is not a news article.
esac
+ t t
H Strip headers from the marked newsarticles
set %t
while [ -n "$1" ]; do
CHECK=`awk '{print $1 ; exit}' $1` 2>/dev/null
WFILE=`mktemp ${MC_TMPDIR:-/tmp}/news.XXXXXX` || exit 1
case $CHECK in
Newsgroups:|Path:)
cp $1 $WFILE && sed '/^'"$CHECK"' /,/^$/d' $WFILE > $1
if [ "$?" = "0" ]; then
rm $WFILE; echo $1 header removed. OK.
else
echo "Oops! Please check $1 against $WFILE"
fi
echo $1 skipped: Not a news article.
esac
shift
done
= t r
+ ! t t
r Copy file to remote host
echo -n "To which host?: "
read Host
echo -n "To which directory on $Host?: "
read Dir
rcp -p %f ${Host}:$Dir
+ t t
R Copy files to remote host (no error checking)
echo -n "Copy files to which host?: "
read Host
echo -n "To which directory on $Host? :"
read Dir
rcp -pr %u ${Host}:$Dir
= f \.tex$ & t r
+ f \.tex$ & t r & ! t t
t Run latex on file and show it with xdvi
latex %f && xdvi `basename %f .tex`.dvi
=+ f ^part | f ^Part | f uue & t r
+ t t
U Uudecode marked news articles (needs work)
set %t
while [ -n "$1" ]; do # strip headers
FIRST=`awk '{print $1 ; exit}' $1`
cat $1 | sed '/^'"$FIRST"' /,/^$/d'; shift
done
) |sed '/^$/d' |sed -n '/^begin 6/,/^end$/p' | uudecode
if [ "$?" != "0" ]; then
echo "Cannot decode %t"
fi
echo "Please test the output file before deleting anything"
=+ f \.tar\.gz$ | f \.tar\.z$ | f \.tgz$ | f \.tpz$ | f \.tar\.Z$| f \.tar\.bz2$ & t r
x Extract the contents of a compressed tar file
unset EXT
case %f in
*.tar.bz2) EXT=tar_bz2;;
esac
if [ "$EXT" = "tar_bz2" ]; then
bunzip2 -c %f | tar xvf -
else
gzip -dc %f | tar xvf -
fi
= t r
+ ! t t
y Gzip or gunzip current file
unset DECOMP
case %f in
*.gz) DECOMP=-d;;
*.[zZ]) DECOMP=-d;;
esac
gzip $DECOMP -v %f
+ t t
Y Gzip or gunzip tagged files
for i in %t
do
unset DECOMP
case $i in
*.gz) DECOMP=-d;;
*.[zZ]) DECOMP=-d;;
esac
gzip $DECOMP -v $i
done
+ ! t t
b Bzip2 or bunzip2 current file
unset DECOMP
case %f in
*.bz2) DECOMP=-d;;
esac
bzip2 $DECOMP -v %f
+ t t
B Bzip2 or bunzip2 tagged files
for i in %t
do
unset DECOMP
case $i in
*.bz2) DECOMP=-d;;
esac
bzip2 $DECOMP -v $i
done
+ f \.tar.gz$ | f \.tgz$ | f \.tpz$ | f \.tar.Z$ | f \.tar.z$ | f \.tar.bz2$ | f \.tar.F$ & t r & ! t t
z Extract compressed tar file to subdirectory
unset D
set gzip -cd
case %f in
*.tar.gz) D="`basename %f .tar.gz`";;
*.tgz) D="`basename %f .tgz`";;
*.tpz) D="`basename %f .tpz`";;
*.tar.Z) D="`basename %f .tar.Z`";;
*.tar.z) D="`basename %f .tar.z`";;
*.tar.bz2) D="`basename %f .tar.bz2`"; set bunzip2 -c ;;
*.tar.F) D="`basename %f .tar.F`"; set freeze -dc;
esac
mkdir $D; cd $D && ($1 $2 ../%f | tar xvf -)
+ t t
Z Extract compressed tar files to subdirectories
for i in %t
do
set gzip -dc
unset D
case $i in
*.tar.gz) D="`basename $i .tar.gz`";;
*.tgz) D="`basename $i .tgz`";;
*.tpz) D="`basename $i .tpz`";;
*.tar.Z) D="`basename $i .tar.Z`";;
*.tar.z) D="`basename $i .tar.z`";;
*.tar.F) D="`basename $i .tar.F`"; set freeze -dc;;
*.tar.bz2) D="`basename $i .tar.bz2`"; set bunzip2 -c;;
esac
mkdir $D; (cd $D && $1 $2 ../$i | tar xvf -)
done
+ f \.gz$ | f \.tgz$ | f \.tpz$ | f \.Z$ | f \.z$ | f \.bz2$ & t r & ! t t
c Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
unset D
unset EXT
case %f in
*.tgz) EXT=tgz;;
*.tpz) EXT=tpz;;
*.Z) EXT=Z;;
*.z) EXT=z;;
*.gz) EXT=gz;;
*.bz2) EXT=bz2;;
esac
case $EXT in
tgz|tpz) D="`basename %f .$EXT`.tar";;
gz|Z|z) D="`basename %f .$EXT`";;
bz2) D="`basename %f .bz2`";;
esac
if [ "$EXT" = "bz2" ]; then
bunzip2 -v %f ; gzip -f9 -v $D
else
gunzip -v %f ; bzip2 -v $D
fi
+ t t
C Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
set %t
while [ -n "$1" ]
do
unset D
unset EXT
case $1 in
*.tgz) EXT=tgz;;
*.tpz) EXT=tpz;;
*.Z) EXT=Z;;
*.z) EXT=z;;
*.gz) EXT=gz;;
*.bz2) EXT=bz2;;
esac
case $EXT in
tgz) D="`basename $1 .tgz`.tar";;
tpz) D="`basename $1 .tpz`.tar";;
gz|Z|z) D="`basename $1 .$EXT`";;
bz2) D="`basename $1 .bz2`";;
esac
if [ "$EXT" = "bz2" ]; then
bunzip2 -v $1
gzip -f9 -v $D
else
gunzip -v $1
bzip2 -v $D
fi
shift
done
+ x /usr/bin/open | x /usr/local/bin/open & x /bin/sh
o Open next a free console
open -s -- sh
#### Added by me ####
#### Video File Menu ####
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
p mplayer
mplayer %f
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
i ffmpeg -i (show audio/video info)
ffmpeg -i %f
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
i mediainfo (show audio/video info)
mediainfo %f
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
v vlc
vlc %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
e Edit with AviDemux (avidemux2_gtk %f)
avidemux2_gtk %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
e Encode to h264 vhq 96 700 (enc2h264 vhq 96 700 %f)
urxvtc -e enc2h264 vhq 96 700 %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
e Encode to h264 hq 64 500 (enc2h264 hq 64 500 %f)
urxvtc -e enc2h264 hq 64 500 %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
e Encode to h264 wmv 17fps 500 64 (enc2h264 wmv17 %f)
urxvtc -e enc2h264 wmv17 %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
e Encode to h264 wmv 25fps 500 64 (enc2h264 wmv25 %f)
urxvtc -e enc2h264 wmv25 %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
@ Encode to -oac mp3_abr_96 (enc2h264 audio 96)
urxvtc -e enc2h264 audio 96 %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
@ Encode to vhq 140 1000 (scale to 624x352, enc2h264 series %f)
urxvtc -e enc2h264 series %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
e Encode to mpg 160 1152 (enc2mpg mpg 160 1152 %f)
urxvtc -e enc2mpg mpg 160 1152 %f &
+ f \.avi$ | f \.mpg$ | f \.mpeg$ | f \.mkv$ | f \.ts$ | f \.rm$ | f \.vob$ | f \.VOB$ | f \.rmvb$ | f \.flv$ | f \.wmv | f \.ram | f \.mp4 | f \.asf | f \.ogm | f \.m2v | f \.evo$ & t r & ! t t
f mplayer framebuffer (mplayer -vo fbdev -fs)
mplayer -vo fbdev -fs %f
+ f \.mkv$ & t r & ! t t
e Extract mkv file (video-audio-subtitle, extractmkv %f)
urxvtc -e extractmkv %f &
#### Audio File Menu ####
+ f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
p mplayer
urxvtc -e mplayer %f &
+ f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
i ffmpeg -i (show audio/video info)
ffmpeg -i %f &
+ f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
i mediainfo (show audio/video info)
mediainfo %f &
+ f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
a audacity
audacity %f
+ f \.wav$ | f \.mp3$ | f \.au$ | f \.aiff$ | f \.snd$ | f \.mp2$ | f \.flac$ | f \.wma$ | f \.snd$ | f \.mpc$ | f \.ac3$ | f \.mid$ | f \.ogg$ & t r & ! t t
e Encode to ABR MP3 (enc2mp3)
urxvtc -e enc2mp3 %f &
#### Disk Image File Menu ####
+ f \.iso$ | f \.ccd$ | f \.img$ | f \.nrg$ | f \.mdf$ | f \.cue$ | f \.bin$ | f \.daa$ | f \.b6t$ | f \.b6i$ & t r & ! t t
i isomaster
isomaster %f
+ f \.cue$ | f \.bin$ & t r & ! t t
3 Convert BIN to ISO (bin2iso)
urxvtc -e bin2iso %f &
+ f \.iso$ | f \.ccd$ | f \.img$ | f \.nrg$ | f \.mdf$ | f \.cue$ | f \.bin$ | f \.daa$ | f \.b6t$ | f \.b6i$ & t r & ! t t
c Poweriso convert image to ISO (all2iso)
urxvtc -e all2iso %f &
+ f \.ccd$ & t r & ! t t
5 Convert CCD to ISO (myccd2iso)
urxvtc -e myccd2iso %f &
+ f \.iso$ | f \.bin$ | f \.img$ | f \.nrg$ | f \.mdf$ & t r & ! t t
5 Fuseiso mount image /mnt/cdrom (fuseiso %f /mnt/cdrom)
fuseiso %f /mnt/cdrom
+ f \.iso$ | f \.bin$ | f \.img$ | f \.nrg$ | f \.mdf$ & t r & ! t t
5 Fuseiso mount image /mnt/iso1 (fuseiso %f /mnt/iso1)
fuseiso %f /mnt/iso1
+ f \.iso$ | f \.bin$ | f \.img$ | f \.nrg$ | f \.mdf$ & t r & ! t t
5 Fuseiso mount image /mnt/iso2 (fuseiso %f /mnt/iso2)
fuseiso %f /mnt/iso2
+ f \.cue$ & t r & ! t t
5 Burn BIN/CUE image (cdrdao write --device /dev/cdrom %f)
urxvtc -e cdrdao write --device /dev/cdrom %f &
+ f \.iso$ | f \.bin$ & t r & ! t t
5 Burn ISO image (burn-cd -m)
urxvtc -e burn-cd -m %f &
+ f \.iso$ & t r & ! t t
5 Burn ISO image (wodim -v dev=/dev/cdrom)
urxvtc -e wodim -v dev=/dev/cdrom %f &
#### Image File Menu ####
+ f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
v xv
xv %f &
+ f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
v feh
feh %f &
+ f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
f feh --scale-down
feh --scale-down %f &
+ f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
g gimp
gimp %f &
+ f \.jpg$ | f \.jpeg$ | f \.bmp$ | f \.png$ | f \.gif$ | f \.svg$ & t r & ! t t
3 geeqie
geeqie %f &
#### PDF File Menu ####
+ f \.pdf$ & t r & ! t t
v epdfview
epdfview %f &
+ f \.pdf$ & t r & ! t t
x xpdf
xpdf %f
+ f \.pdf$ & t r & ! t t
x viewpdf
urxvtc -e viewpdf %f &
#### Text File Menu ####
+ f \.txt$ | f \.nfo$ | f \.cfg$ | f \.log$ | f \.srt$ | f \.sub$ | f \.ssa$ & t r & ! t t
v leafpad
leafpad %f &
+ f \.txt$ | f \.nfo$ | f \.cfg$ | f \.log$ | f \.srt$ | f \.sub$ | f \.ssa$ & t r & ! t t
g gvim
gvim %f &
#### Archive File Menu ####
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
l List file contents (7z l)
urxvtc -e 7z l %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
1 xarchiver
xarchiver %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
2 Extract *.tar.gz (tar -xzvf)
urxvtc -e tar -xzvf %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
3 Extract *.tar.bz2 (tar -xjvf)
urxvtc -e tar -xjvf %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ | f \.cbr$ | f \.cbz$ & t r & ! t t
4 Extract *.rar Full Path (unrar x)
urxvtc -e unrar x %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ | f \.cbr$ | f \.cbz$ & t r & ! t t
5 Extract *.rar Current Dir (unrar e)
urxvtc -e unrar e %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ | f \.cbr$ | f \.cbz$ & t r & ! t t
5 Extract broken *.rar Full Path (unrar x -kb)
urxvtc -e unrar x -kb %f &
+ f \.zip$ & t r & ! t t
6 Extract *.zip (unzip)
urxvtc -e unzip %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
6 Extract *.zip with bsdtar (bsdtar -xvf)
urxvtc -e bsdtar -xvf %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
7 Extract *.7z Full Path (7z x)
urxvtc -e 7z x %f &
+ f \.zip$ | f \.tar.gz$ | f \.rar$ | f \.bz2$ | f \.tgz$ | f \.7z$ | f \.ace$ & t r & ! t t
8 Extract *.7z Current Dir (7z e)
urxvtc -e 7z e %f &
+ f \.ace$ & t r & ! t t
9 Extract *.ace Full Path (unace x)
urxvtc -e unace x %f &
+ f \.ace$ & t r & ! t t
a Extract *.ace Current Dir (unace e)
urxvtc -e unace e %f &
+ f \.rar$ | f \.cbz$ & t r & ! t t
b Extract *.rar in *.rar_dir directory (unrar2dir)
urxvtc -e unrar2dir %f &
+ f \.zip$ & t r & ! t t
c Extract *.zip in *.zip_dir directory (unzip2dir)
urxvtc -e unzip2dir %f &
+ f \.tar.gz$ | f \.bz2$ | f \.tgz$ & t r & ! t t
e yaourt Install/Upgrade Package (yaourt -U)
yaourt -U %f
#### Windows Executable File Menu ####
+ f \.exe$ | f \.EXE$ | f \.bat$ | f \.BAT$ & t r & ! t t
r wine
urxvtc -e wine %f &
+ f \.exe$ | f \.EXE$ | f \.bat$ | f \.BAT$ | f \.cmd$ | f \.CMD$ | f \.COM$ | f \.com$ & t r & ! t t
r Dosbox (Dosbox normal)
Dosbox normal %f &
+ f \.exe$ | f \.EXE$ | f \.bat$ | f \.BAT$ | f \.cmd$ | f \.CMD$ | f \.COM$ | f \.com$ & t r & ! t t
r Dosbox (Dosbox normal3x)
Dosbox normal3x %f &
+ f \.exe$ | f \.EXE$ | f \.bat$ | f \.BAT$ | f \.cmd$ | f \.CMD$ | f \.COM$ | f \.com$ & t r & ! t t
r Dosbox (Dosbox advmame3x)
Dosbox advmame3x %f &
#### Internet File Menu ####
+ f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
k kazehakase
kazehakase %f
+ f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
s swiftweasel
swiftweasel %f
+ f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
s elinks
urxvtc -e elinks %f &
+ f \.htm$ | f \.html$ | f \.php$ | f \.asp$ & t r & ! t t
s links -g
links -g %f
#### Document File Menu ####
+ f \.doc$ | f \.rtf$ & t r & ! t t
a abiword
abiword %f
+ f \.doc$ | f \.rtf$ & t r & ! t t
o OpenOffice Writer
soffice -writer %f
+ f \.doc$ | f \.rtf$ & t r & ! t t
o antiword
urxvtc -e antiword %f &
+ f \.doc$ | f \.rtf$ & t r & ! t t
o viewword (antiword -f %f > vi)
urxvtc -e viewword %f &
+ f \.lit$ & t r & ! t t
o c-lit
c-lit %f
#### Spread Sheet File Menu ####
+ f \.xls$ | f \.csv$ & t r & ! t t
g gnumeric
gnumeric %f
#### Presentation File Menu ####
+ f \.ppt$ | f \.pps$ & t r & ! t t
v OpenOffice Impress (soffice -impress)
soffice -impress %f
#### Java File Menu ####
+ f \.jar$ & t r & ! t t
e Execute java program (java -jar)
java -jar %f
#### Help/Manual File Menu ####
+ f \.chm$ & t r & ! t t
v xchm
xchm %f
#### Emulator Roms ####
+ f \.smc$ & t r & ! t t
v zsnes
zsnes %f
+ f \.smc$ & t r & ! t t
v snes9x (snes9x -tr -dfr -y2)
snes9x -tr -dfr -y2 %f
+ f \.smd$ & t r & ! t t
v dgen (dgen -G 1280x960)
dgen -G 1280x960 %f
+ f \.v64$ | f \.z64$ & t r & ! t t
v mupen64_nogui
mupen64_nogui %f
+ f \.nes$ & t r & ! t t
v tuxnes
tuxnes %f
+ f \.nes$ & t r & ! t t
v fceu
fceu -input1 gamepad %f
+ f \.nes$ & t r & ! t t
v ines
ines %f
+ f \.int$ & t r & ! t t
v intellivission
int %f
+ f \.gb$ | f \.gba$ & t r & ! t t
v VisualBoyAdvance
VisualBoyAdvance -4 %f
+ f \.gb$ | f \.gba$ & t r & ! t t
v gvba
gvba %f
+ f \.gba$ & t r & ! t t
v vgba
vgba %f
+ f \.gb$ & t r & ! t t
v vgb
vgb %f
+ f \.adf$ & t r & ! t t
v amigacomputer
e-uae %f
+ f \.gcm$ & t r & ! t t
v tuxcube
tuxcube %f
+ f \.st$ & t r & ! t t
v hatari
hatari %f
+ f \.a26$ & t r & ! t t
v stella
stella %f
+ f \.col$ & t r & ! t t
v colem32
colem32 %f
#### Source-Code File Menu ####
+ f \.c$ & t r & ! t t
c compile source file (gcc -O2 -Wall -pedantic)
urxvtc -e gcc -O2 -Wall -pedantic %f
+ f \.cpp$ & t r & ! t t
c compile source file (gcc -O2 -Wall -pedantic)
urxvtc -e g++ -O2 -Wall -pedantic %f

Similar Messages

  • [solved]Garbled screen with QT apps in Xfce/Gnome

    After a big upgrade a few days ago I get a garbled screen whenever I focus a window with a Qt app in Xfce, like VLC or VirtualBox. If I focus (by clicking on titlebar/ or select from taskbar) a non-Qt app the screen returns to normal.  I could not capture the screen corruption with scrot so I used a very crappy cam:
    normal:
    garbled:
    I see no error messages in Xorg.0.log (or any other log). I don't know which configs /packages are relevant to post here.
    update 1:
    Someone with Gnome seems to have the same problem
    update 2:
    After restarting X VLC works without the problem, but when I start VirtualBox (archlinuxfr/virtualbox_bin 3.0.2-2) the problem reappears for both VirtualBox and VLC.
    update 3:
    Compositing seems to be involved. If I turn it off the problem disappears, not a real solution, but at least I can use my apps.
    xorg.conf
    Section "Extensions"
    Option "Composite" "0"
    EndSection
    update 4:
    Workaround is to downgrade both libgl and ati-dri to version 7.4.4-1 .
    (see: http://wiki.archlinux.org/index.php/Downgrade_packages)
    Last edited by rwd (2009-07-29 18:04:43)

    pjjanak wrote:
    rwd wrote:
    pjjanak wrote:I'm curious, what kind of graphics cards do you have?
    I have a ATI X1400. I am using the x86-video-ati 6.12.2-2 driver from extra.
    I have an ATI 1200 and am using the same driver. I wonder if it has something to do with it? Or perhaps the latest X updates? I'm going to try downgrading.
    Peter
    Might be an idea, but there are so many packages involved that could be the cause. B.t.w. I tried the aur/x86-video-radeonhd-git driver but that didn't help.
    These were the upgrades after which the problem appeared. There are some packages that obviously have nothing to do with xorg but it must be one of these:
    [2009-07-17 00:24] upgraded virtualbox_bin (3.0.2-1 -> 3.0.2-2)
    [2009-07-17 00:27] upgraded midori-git (20090613-1 -> 20090717-1)
    [2009-07-20 21:23] upgraded perl (5.10.0-4 -> 5.10.0-6)
    [2009-07-20 21:23] upgraded openssl (0.9.8k-2 -> 0.9.8k-4)
    [2009-07-20 21:23] upgraded python (2.6.2-4 -> 2.6.2-5)
    [2009-07-20 21:23] upgraded boost (1.37.0-1 -> 1.39.0-1)
    [2009-07-20 21:23] upgraded libjpeg (6b-6 -> 7-1)
    [2009-07-20 21:23] upgraded libpng (1.2.37-1 -> 1.2.38-1)
    [2009-07-20 21:23] upgraded libwmf (0.2.8.4-4 -> 0.2.8.4-5)
    [2009-07-20 21:23] upgraded libtiff (3.8.2-4 -> 3.8.2-5)
    [2009-07-20 21:23] upgraded libcups (1.3.10-2 -> 1.3.11-1)
    [2009-07-20 21:24] upgraded ghostscript (8.64-5 -> 8.64-6)
    [2009-07-20 21:24] upgraded dri2proto (2.0-1 -> 2.1-1)
    [2009-07-20 21:24] upgraded libdrm (2.4.11-2 -> 2.4.12-1)
    [2009-07-20 21:24] upgraded libgl (7.4.4-1 -> 7.5-1)
    [2009-07-20 21:24] upgraded mesa (7.4.4-1 -> 7.5-1)
    [2009-07-20 21:24] upgraded jasper (1.900.1-2 -> 1.900.1-3)
    [2009-07-20 21:24] upgraded lcms (1.18-1 -> 1.18-2)
    [2009-07-20 21:24] upgraded imagemagick (6.5.3.2-1 -> 6.5.3.10-1)
    [2009-07-20 21:24] upgraded psiconv (0.9.8-4 -> 0.9.8-5)
    [2009-07-20 21:24] upgraded abiword-plugins (2.6.8-6 -> 2.6.8-7)
    [2009-07-20 21:24] upgraded ati-dri (7.4.4-1 -> 7.5-1)
    [2009-07-20 21:24] upgraded run-parts (2.31-1 -> 3.1.3-1)
    [2009-07-20 21:24] upgraded ca-certificates (20080809-5 -> 20090709-1)
    [2009-07-20 21:24] upgraded cairomm (1.8.0-1 -> 1.8.2-1)
    [2009-07-20 21:24] upgraded clamav (0.95.1-1 -> 0.95.2-1)
    [2009-07-20 21:24] upgraded device-mapper (1.02.32-2 -> 1.02.33-1)
    [2009-07-20 21:24] upgraded dhcpcd (5.0.4-1 -> 5.0.6-1)
    [2009-07-20 21:24] upgraded e2fsprogs (1.41.6-1 -> 1.41.8-1)
    [2009-07-20 21:24] upgraded libdjvu (3.5.22-1 -> 3.5.22-2)
    [2009-07-20 21:24] upgraded evince (2.26.2-1 -> 2.26.2-2)
    [2009-07-20 21:24] upgraded feh (1.3.4-4 -> 1.3.4-5)
    [2009-07-20 21:24] upgraded ffmpegthumbnailer (1.5.4-1 -> 1.5.4-2)
    [2009-07-20 21:24] upgraded pango (1.24.4-1 -> 1.24.4-2)
    [2009-07-20 21:24] upgraded gtk2 (2.16.2-1 -> 2.16.5-1)
    [2009-07-20 21:24] upgraded wxgtk (2.8.10.1-3 -> 2.8.10.1-4)
    [2009-07-20 21:24] upgraded filezilla (3.2.4.1-1 -> 3.2.6.1-1)
    [2009-07-20 21:24] upgraded gegl (0.0.22-1 -> 0.0.22-2)
    [2009-07-20 21:24] upgraded libmng (1.0.10-1 -> 1.0.10-2)
    [2009-07-20 21:24] upgraded gimp (2.6.6-1 -> 2.6.6-2)
    [2009-07-20 21:24] upgraded glibmm (2.20.0-1 -> 2.20.1-1)
    [2009-07-20 21:24] upgraded gstreamer0.10-base-plugins (0.10.23-1 -> 0.10.23-2)
    [2009-07-20 21:24] upgraded gstreamer0.10-good-plugins (0.10.15-1 -> 0.10.15-2)
    [2009-07-20 21:24] upgraded gwget (1.0.1-1 -> 1.0.2-1)
    [2009-07-20 21:24] upgraded hwdetect (2009.06-2 -> 2009.07-1)
    [2009-07-20 21:24] upgraded imlib2 (1.4.2-2 -> 1.4.2-3)
    [2009-07-20 21:25] upgraded inkscape (0.46-11 -> 0.46-12)
    [2009-07-20 21:25] upgraded iptables (1.4.3.2-1 -> 1.4.4-1)
    [2009-07-20 21:25] upgraded lib32-cairo (1.8.6-1 -> 1.8.8-1)
    [2009-07-20 21:25] upgraded lib32-glibc (2.10.1-2 -> 2.10.1-3)
    [2009-07-20 21:25] upgraded lib32-e2fsprogs (1.41.6-1 -> 1.41.8-1)
    [2009-07-20 21:25] upgraded lib32-gcc-libs (4.4.0-3 -> 4.4.0-5)
    [2009-07-20 21:25] upgraded lib32-glib2 (2.20.3-1 -> 2.20.4-1)
    [2009-07-20 21:25] upgraded lib32-readline (5.2.013-2 -> 6.0.003-1)
    [2009-07-20 21:25] upgraded lib32-gnutls (2.8.0-1 -> 2.8.1-1)
    [2009-07-20 21:25] upgraded lib32-openssl (0.9.8k-2 -> 0.9.8k-4)
    [2009-07-20 21:25] upgraded lib32-heimdal (1.2.1-3 -> 1.2.1-5)
    [2009-07-20 21:25] upgraded lib32-libjpeg (6b-6 -> 7-1)
    [2009-07-20 21:25] upgraded lib32-libtiff (3.8.2-4 -> 3.8.2-5)
    [2009-07-20 21:25] upgraded lib32-libcups (1.3.10-2 -> 1.3.11-1)
    [2009-07-20 21:25] upgraded lib32-pango (1.24.2-1 -> 1.24.4-2)
    [2009-07-20 21:25] upgraded lib32-gtk2 (2.16.2-1 -> 2.16.5-1)
    [2009-07-20 21:25] upgraded lib32-libdrm (2.4.11-2 -> 2.4.12-1)
    [2009-07-20 21:25] upgraded lib32-libgcrypt (1.4.4-1 -> 1.4.4-2)
    [2009-07-20 21:25] upgraded lib32-libgl (7.4.2-2 -> 7.4.4-1)
    [2009-07-20 21:25] upgraded lib32-libxml2 (2.7.3-1 -> 2.7.3-2)
    [2009-07-20 21:25] upgraded lib32-libxt (1.0.5-2 -> 1.0.6-1)
    [2009-07-20 21:25] upgraded lib32-mesa (7.4.2-1 -> 7.4.4-1)
    [2009-07-20 21:25] upgraded lib32-sqlite3 (3.6.15-1 -> 3.6.15-2)
    [2009-07-20 21:25] upgraded libmysqlclient (5.1.35-2 -> 5.1.36-1)
    [2009-07-20 21:25] upgraded lvm2 (2.02.47-2 -> 2.02.48-1)
    [2009-07-20 21:25] upgraded mplayer (29318-1.1 -> 29411-3)
    [2009-07-20 21:25] upgraded mysql-clients (5.1.35-2 -> 5.1.36-1)
    [2009-07-20 21:25] upgraded mysql (5.1.35-2 -> 5.1.36-1)
    [2009-07-20 21:25] upgraded namcap (2.2-2 -> 2.3-1)
    [2009-07-20 21:25] upgraded nmap (4.76-4 -> 5.00-1)
    [2009-07-20 21:25] upgraded openmotif (2.3.1-4 -> 2.3.1-5)
    [2009-07-20 21:25] upgraded readline (6.0.00-1 -> 6.0.003-1)
    [2009-07-20 21:25] upgraded php (5.2.10-1 -> 5.2.10-3)
    [2009-07-20 21:25] upgraded pil (1.1.6-5 -> 1.1.6-6)
    [2009-07-20 21:25] upgraded poppler (0.10.7-1 -> 0.10.7-2)
    [2009-07-20 21:25] upgraded ppp (2.4.4-8 -> 2.4.4-9)
    [2009-07-20 21:25] upgraded pycairo (1.8.4-1 -> 1.8.6-1)
    [2009-07-20 21:25] upgraded qt (4.5.2-1 -> 4.5.2-3)
    [2009-07-20 21:25] upgraded ruby (1.8.7_p173-2 -> 1.8.7_p174-1)
    [2009-07-20 21:25] upgraded samba (3.3.6-1 -> 3.3.6-2)
    [2009-07-20 21:25] upgraded sdl_image (1.2.7-1 -> 1.2.7-2)
    [2009-07-20 21:25] upgraded shadow (4.1.3.1-1 -> 4.1.4.1-1)
    [2009-07-20 21:25] upgraded sudo (1.7.1-2 -> 1.7.2-1)
    [2009-07-20 21:25] upgraded sunbird (0.9-1 -> 0.9-2)
    [2009-07-20 21:25] upgraded syslog-ng (3.0.1-6 -> 3.0.3-1)
    [2009-07-20 21:25] upgraded testdisk (6.11-1 -> 6.11-2)
    [2009-07-20 21:26] upgraded thunar (1.0.1-3 -> 1.0.1-4)
    [2009-07-20 21:26] upgraded thunderbird (2.0.0.21-1 -> 2.0.0.22-1)
    [2009-07-20 21:26] upgraded tightvnc (1.3.10-1 -> 1.3.10-2)
    [2009-07-20 21:26] upgraded usbutils (0.82-1 -> 0.84-1)
    [2009-07-20 21:26] upgraded vlc (1.0.0-1.1 -> 1.0.0-5)
    [2009-07-20 21:26] upgraded xorg-server (1.6.1.901-3 -> 1.6.2-1)
    [2009-07-20 21:42] upgraded sqlite3 (3.6.15-2 -> 3.6.15-2)
    [2009-07-20 23:39] upgraded libjpeg (7-1 -> 7-1)
    [2009-07-21 15:14] upgraded lib32-libgl (7.4.4-1 -> 7.5-1)
    [2009-07-21 15:14] upgraded lib32-libpng (1.2.37-1 -> 1.2.38-1)
    [2009-07-21 15:14] upgraded lib32-mesa (7.4.4-1 -> 7.5-1)
    Last edited by rwd (2009-07-22 20:57:49)

  • How to solve the error "The specified resource is reserved" when running with DAQmx And LabVIEW?

    How to solve the error "The specified resource is reserved" when running with DAQmx And LabVIEW?

    I hate "J term"
    OK I love the learning the students get.   And, I like helping them out!  But, as a former man who's got the varicose viens to prove he's spent time "behind the podium" (yeah, "behind the podium" puts 'em to sleep- songs and dances for the young'uns) come on! USE the tools you teach!
    Instructors invited to engage in the forums
    Jeff

  • [SOLVED] dwm: cannot open mixer

    I've been setting up dwm through the last hours and I had an issue with sound playback. Firstly, I can play any sound from the console or any other wm. The problem appears when I start dwm by using xinit but loading it through gdm seems to solve the problem but still I'm not satisfied with that solution. I think that gdm do something in order to grant access to the sound card but on the other hand I still have another problem with multiple running applications that playback sound, only the first opened application can.
    After starting dwm with xinit I get "amixer: Mixer attach default error: No such file or directory" and by running alsamixer I get "cannot open mixer: No such file or directory".
    Thanks in advance
    Last edited by russo (2011-06-20 04:01:15)

    Well, I checked those posts.
    /dev/mixer exists
    I tried to load the snd-pcm-oss but nothing changed.
    However I noticed that I can run alsamixer as root. I'm not sure but maybe having to run gdm as root while running xinit as user made the difference but still it doesn't make sense since I can run openbox with xinit and everything works fine. I'll keep trying
    EDIT: Finally, I tried to load openbox through xinit and had the same problem. Next I tried to reboot removing gdm from the daemons and start dwm directly with the xinitrc options. Now it seems to work fine. Maybe gdm blocked the sound card once it opened.
    Last edited by russo (2011-06-20 04:00:56)

  • How to reset the BIOS to solve a problem with DVD burner on Satellite P100

    Hi
    I am trying to reset my cmos to solve a problem with my dvd burner.
    I was trying to run an old game that I own that was protected by starforce and ran starforce nightmare with has made the device completly inoperable.
    After much searching I have heard to reset cmos.
    I have treid through debug and nothing happend. I don't really want to open up the laptop and pull the cmos battery out or leave it for a month until the cmos battery runs out.
    Is there any advice on what I should do.

    Hi
    What you want to do is simply not possible you said that you had some problems with PCs and you fixed it.
    That's great. But a PC is simply different and cannot be compared with the notebook
    > I was trying to run an old game that I own that was protected by starforce and ran starforce nightmare with has made the device completely inoperable.
    According to your statement above you CD/DVD drive issue could be related to the installed starforce nightmare. I dont know this but I presume this software/application has changed or destroyed the CD/DVD drives firmware.
    Sorry but I see only one way to get it working again You have to contact the ASP in your country. Maybe a technician would be able to rescue the drive
    PS: your Satellite P100 PSPA6A series seems to be a Australian series therefore you should use the Toshiba Australian page if you need some drivers or BIOS
    Bye

  • [Solved]Ctrl+V not working in libreoffice on gnome(non-latin layout)

    When using gnome-shell&libreoffice or calligra, universal keyboard shortcuts such as ctrl+v or ctrl+z don't do anything while on a non-latin layout(hebrew in my case).
    If I want to paste something with ctrl+v I have to change layout to English and only then will it work.
    Under MATE the shortcuts work fine regardless of the layout in both applications(and all others i have tried).
    Under GNOME Shell all other applications I tried accept the shortcuts regardless of the layout(Firefox, gedit, Empathy, Nautilus)
    Anyone has an idea as to what might cause this behavior when using GNOME?
    Thanks.
    EDIT: Solved for libreoffice by removing the package "libreoffice-gnome". UI is not as pretty now but at least the keyboard shortcuts work.
    Last edited by shimi (2013-08-09 09:00:50)

    After months of switching layouts and banging my head against this bug, I thought I should check LibreOffice settings (I'm using 4.1.5.3 now). What figures? I did find something. And in just a few clicks.
    This is not a bug! It's simply a matter of configuration.
    For the regular keyboard shortcuts (like Ctrl+C, Ctrl+V, etc.) to remain operational in LibreOffice applications while using a non-latin keyboard layout (like Greek or Russian), go to Tools -> Options -> Language Settings -> Languages, check the Ignore system input language option, save, and Bob's your uncle.
    Hope this helps.
    Cheers!
    PS
    Technically, though, shortcuts still remain language-dependent. This means if you enable this option, you will have to set your document languages manually.

  • I just updated my latest java but the update is causing problems with some externale devices. So i would like to uninstall this latest java update and get back the previous one. That should solve to problems with my external device

    i just updated my latest java but the update is causing problems with some external devices. So i would like to uninstall this latest java update and get back the previous one. That should solve to problems with my external device.
    Is this possible and how do i do that?
    Anyone who responds thanks for that!
    Juko
    I am running
    Hardware Overview:
      Model Name:          Mac Pro
      Model Identifier:          MacPro1,1
      Processor Name:          Dual-Core Intel Xeon
      Processor Speed:          2,66 GHz
      Number of Processors:          2
      Total Number of Cores:          4
      L2 Cache (per Processor):          4 MB
      Memory:          6 GB
      Bus Speed:          1,33 GHz
      Boot ROM Version:          MP11.005D.B00
      SMC Version (system):          1.7f10
      Serial Number (system):          CK7XXXXXXGP
      Hardware UUID:          00000000-0000-1000-8000-0017F20F82F0
    System Software Overview:
      System Version:          Mac OS X 10.7.5 (11G63)
      Kernel Version:          Darwin 11.4.2
      Boot Volume:          Macintosh HD(2)
      Boot Mode:          Normal
      Computer Name:          Mac Pro van Juko de Vries
      User Name:          Juko de Vries (jukodevries)
      Secure Virtual Memory:          Enabled
      64-bit Kernel and Extensions:          No
      Time since boot:          11 days 20:39
    Message was edited by Host

    Java 6 you can't as Apple maintains it, and Java 7 you could if you uninstall it and Oracle provides the earlier version which they likely won't his last update fixed 37 remote exploits.
    Java broken some software here and there, all you'll have to do is wait for a update from the other parties.

  • [Solved] Can't remap special sleep key in Gnome 3.4

    Hey,
    my keyboard has a key that, by default, suspends the computer.
    In gnome 3.2 I could remap that key, through gnome-control-center to hibernate instead.
    I can still map it that way, but when I press it it still suspends.
    Edit: Solved. If anyone has the same problem: I changed a switch with dconf-editor under org.gnome.settings-daemon.power there are several switches for buttons. Changed several from suspend to hibernate -> profit
    Last edited by th3voic3 (2012-04-24 17:32:04)

    Thanks for the replies. I don't have an xorg.conf file. I tried one (generated by Xorg -configure) in my attempts to fix the problem, but I deleted it when I didn't work.
    I'm not at home right now, so I can't get the exact output from xrandr, but I know it showed that the resolution was 1024x768. 
    When I first installed the system I thought that I needed the xf86-video-s3 driver, but that didn't work (X just ignored it and used vesa) so after a bit of research I found that the driver I needed was xf86-video-savage, which, as you can see from the log file, it is using.
    karol, I'll try your suggestion of the UseBIOS option when I get home. The problem in your link looks exactly like mine!

  • Login scripts not running with AnyConnect NAM and ISE 1.2

    I am using AnyConnect 3.1 NAM as my 802.1x supplicant for ISE 1.2.  When users log in with EAP Chaining (User and Machine Auth), the login script seems hit or miss on if it runs to map their drives.  If I uninstall the NAM client, they map drives every time.  I would think that running a login script to map drives is a common scenario and I was wondering if anyone else using AnyConnect NAM was having similar issues or how they were dealing with it.

    I have the same issue and I solve the issue with change these parameters.
    1.- You must change on configuration profile "before user logon". I have 5 seconds
    2.- You must change on configuration profile  "port authentication Exception policy" and you must enable checkbox "enable port exceptions" and select "allow data traffic before authentication"
    3.- You must enable in the option of interface Ethernet Intel on PC "Wait for link" this option It's in "configured advanced of Intel. You must select "on" in this option.
    4.- (this recommendation it was by Cisco) 
    Active Direct GPO has a setting "Computer Configuration\Administrative
    Templates\System\Logon\ Always wait for the network at computer startup and logon" that
    can be enabled to make the logon scripts wait till 802.1x authentication is completed.
    With those changes the logon script run fine.
    Regards
    David.

  • HT1379 My macbook pro 2013 is running to slow even when I am using the keyboard, it running with a delay. I upgraded the memories to 8gb but still slow what can i do to fix it.

    Good morning I am confronting serious problems with my Macbook pro 2013, that is runing to slow,  even when I am writing this email is running with some kind of delay. I upgraded the memories to 8gb but still running slow . Please let me know what I can do to solve the problem. Thanks in advance. Fernando

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to gather information about the state of your computer. That information goes nowhere unless you choose to share it on this page. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a couple of minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking  anywhere in the line. The whole line will highlight, though you may not see all of it in your browser, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; Pc () { o=`grep -v '^ *#' "$2"`; Pm "$1"; }; Pm () { [[ "$o" ]] && o=`sed '/^ *$/d; s/^ */   /' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id | grep -qw '80(admin)'; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed '8!d;s/^ *//'; o=`SP Hardware | awk '/Mem/{print $2}'`; o=$((o<4?o:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d; /[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]||0[^2]8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; for b in Thunderbolt USB; do o=`SP $b | sed -En '1d; /:$/{s/ *:$//;x;s/\n//p;}; /^ *V.* [0N].* /{s/ 0x.... //;s/[()]//g;s/\(.*: \)\(.*\)/ \(\2\)/;H;}; /Apple|SCSM/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; d=(/ ""); D=(System User); E=; for i in 0 1; do o=`cd ${d[$i]}L*/L*/Dia* || continue; ls | while read f; do [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && e=" *" || e=; awk -F_ '!/ag$/{$NF=a[split($NF,a,".")]; print $0 "'"$e"'"}' <<< "$f"; done | tail`; Pm "${D[$i]} diagnostics"; done; [[ "$o" =~ \*$ ]] && printf $'\n* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|last value [1-9]|n Cause: -|NVDA\(|pagin|SATA W|ssert|timed? ?o' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); o=${s[2]}%; Ps "CPU usage by process \"$s\" with UID ${s[1]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); s[2]=${s[2]%[+-]}; o=$((s[2]>=25000?s[2]:0)); Ps "Mach ports used by process \"$s\" with UID ${s[1]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'`; Pm "Extrinsic system jobs"; o=`launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | grep -v com\.apple\.CSConfig | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/Star*; do M; done`; Pm "Startup items"; o=`find -L /S*/L*/E* {/,}L*/{A*d,Compon,Ex,In,Keyb,Mail/B,P*P,Qu*T,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB\ :CFBundleIdentifier "$d/Info.plist") || ID="No bundle ID"; [[ "$ID" =~ ^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|\.hpio|JMicron|microsoft\.MDI|print|SoftRAID ]] || printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find -L /u*/{,*/}lib -type f | while read f; do file -b "$f" | grep -qw shared && ! codesign -v "$f" && echo $f; done`; Pm "Unsigned shared libraries"; o=`for e in DYLD_INSERT_LIBRARIES DYLD_LIBRARY_PATH; do launchctl getenv $e; done`; Pm "Environment"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; Ps "DNS"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; Pc "hosts" <(grep -v 'host *$' /etc/hosts); Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep "Valid: N|Duplicate: Y" | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign ($) or a percent sign (%). If you get the percent sign, enter
    exec bash
    in the window and press return. You should then get a new line ending in a dollar sign.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know your password, or if you prefer not to enter it, just press return three times at the password prompt.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line "[Process completed]" to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report your results. No harm will be done.
    8. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If it happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of Apple Support Communities ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Gnome-online-accounts in gnome 3.2 not working[SOLVED]

    gnome-online-accounts in gnome 3.2 is not working.it gives a bad token request.are other arch users experiencing this problem.
    Last edited by PranavG (2011-10-02 15:52:33)

    There are issues with the proxy settings, and I had weird situations depending the network I was connecting...
    When I use my wireless network I can use the online accounts correctly.
    When I use a foreign wireless, mostly sure I can't.
    And when I set a local proxy (e.g. pivoroxy) for https protocol, I get this error while adding the account:
    http://www.mail-archive.com/desktop-pac … 25738.html
    That could be solved just by issuing:
    $ export https_proxy=
    $ gnome-control-center
    Hope this could be useful for you,
    Regards,
    EDIT: for some reason I wrote "I get this error will adding the account" instead of "I get this error *while* adding the account".
    Last edited by lapacho (2011-10-10 20:58:32)

  • Off-Cycle Payroll Run with reason Absence.

    Hello
    We are trying to execute Off-Cycle Payroll Run with reason Absence, however the /559 and /560 are showing Zero amount.
    We are running it via Offcycle workbench. Would it really make a difference?
    Here are the main configurations I have done:
    1. We have executed the regular payroll run for past one month (Jan 2010).
    2. We have maintained a 10 days absence for next month (Feb 2010)
    3. The Absence valuation is configured to generate WT 3000, in which I am able to pull the number of absence hours.
    My question is how to I get the per hour rate multipled by number of absence hours AUTOMATICALLY. I am looking to do it with configuration instead of PCR. Any thoughts?
    Scenario: Current month (Jan) regular payroll is over, and employee applied for half month leave in next month(Feb). Now, employee wants to take salary for those 15 leave days before going for leaves.
    Thanks
    Yash

    Hi Yash,
    I am not sure, if this functionality can be achieved without a PCR.
    I guess you need to write a PCR for this....
    Still you can try this using constants dependent on wage types path is IMG ->Payroll->Time Wage Type Valuation->Valuation Bases->Constant Valuation Bases->Constants Dependent on wage types.
    I have a question here, if you are paying the employee for the half month of absence before he took the leave, how will the system know when you run the regular payroll for him at the end of the month that employee already got paid for the half month absence?
    You should make sure that system doesnt pay him twice......
    Thanks,
    Janga K.

  • Hello i have i mac runs with mac os lion but i want to format my computer

    hello i have i mac runs with mac os lion but i want to format my computer but i can't because i am using apples wireless keyboard so there is any way to format my i mac with wireless keyboard please help

    Why do you want to format your computer? That is a very 'Windows thing' to do but is not commonly done on a Mac.
    What problerm are you trying to solve?

  • Up an running with Java. What tools to download?

    Hello, I use to work with Java applications about three years ago, but had switched over to another language. Now I need to develop code using Java again. In fact, I need to reuse some of the code I developed a few years ago. The code does alot with animations. So here is my question.
    "What tools do I need to get up and running with Java?"
    1. What compiler to use (recommend the best open source editor, or one that is not that expensive)?
    2. Where is the Java SDK that I need to download?
    3. Will my three year old code still be compatible with the SUN, Java code I wrote 3 years ago?
    Ralph

    Actually Jwenting is right, IntelliJ is by all measures the best IDE.
    I have used textpad, programmers notepad (which I still use for some things), VIM, eclipse for a number of years, intelliJ for a short time, and Netbeans since earlier this year.
    textpad - Great place to learn the basics, but once the basics are down you need to find an IDE.
    Programmers notepad - love it, still use it for some languages, has some features you will find nowhere else
    VIM - You have your vi lovers and your vi haters, I would say I fall into the haters camp but still keep up with it because when you need an editor to make a quick change on some obscure system with very little on it, some version of Vi will undoubtedly be there. Once you get into the flow it is not bad, but there is lots of annoying things about vi and its offspring.
    Eclipse - Great IDE, was the better of the free ones for a long time. For me eclipse's strength became it's albatross. That is plugins ofcourse. There are literally thousands of plugins that can make eclipse do just about anything you want. The problem is there is very little oversite so some plugins are great, some good, some ok, some suck, and some are deliberately hostile. You don't really know what you are going to get until you try it, but removing it can be a pain so sometimes you are stuck. Plus getting the plugins to play nice with each other can be a chore, the more plugins you have the harder it gets to get new ones to play nice. It was after a whole day stint trying to get eclipse to work again after picking a bad plugin that i simply decided to give netbeans 6.0 a try since it had what I wanted packaged in already.
    IntelliJ - Only got to use this for a short time as they went ahead and bought it at my last job after I gave my months notice for leaving. Guess they figured it would be easier to replace me that way. From the little I got to play with it, it was extremely user friendly to the point of being a pleasure to work with, You definitely got what you paid for.
    Netbeans 6.0 and higher - Netbeans pre 6.0 sucked. Even 5.5 was not as good as eclipse at the time of it's release, but was a sign they were headed in the right direction. After releasing version 4 only to have it suck and laughed at in the java community since eclipse was hundreds of times better Sun realized netbeans was making them look bad. So they decided to fix that and decided the best way to fix it was to model netbeans as closely after IntelliJ (which was the best even back then) as legally possible. With each release they get closer to realizing this goal, and since it is free with each release netbeans picks up more and more former eclipse fanbois. It is now at the point where most people following the eclipse vrs netbeans war will agree that netbeans has taken the lead and has more current users than eclipse. I would even wager that most of the people who said netbeans was best in this thread were not long ago eclipse fans. Bottom line, of the free IDEs netbeans is the better choice at this point.
    But I got to ask, when you say a salary of R8,000 - R12,000 do you mean monthly income or annually? If annually can you even survive on about $1,000 in US dollars for a year? I mean I make about 8 times that in a month, after uncle sam takes his portion, and i wouldn't call myself rich by any means.
    Also jwenting have you tried the newer netbeans? I think if you do you will see they are strikingly similar to IntelliJ in many ways.
    JSG
    Edited by: JustSomeGuy on Dec 5, 2008 7:24 AM

  • Easier and better ways to solve current problems with Acrobat?

    Is there no better and easier way to solve the problems (installation, re-installing and crashing) with Acrobat? I really think that the ball is in Acrobat's corner right now, because I should not (for example) need to deactivate and re-activate my subscription in order to get AcrobatPro XI to work on my computer, let alone deinstalling an older version that (for now) does work, risking that in the end neither of them work. I need the (great) AdobeCloud applications to do my work as a freelancer, and I really cannot afford this kind of trouble with my applications, nore loose time repairing them. These are difficult times as it is.
    Regards,
    Marc

    Sorry, I can't. When I installed it there was no message that said I had to deinstall the old version first, and with other Adobe CC applications there had been no trouble at all, so I installed it with The previous version still on my computer.
    After installing, neither of them would start up properly, so I deinstalled version XI, after which the old version worked again, but my Adobe Application Manager does not let me download the XI version a second time, so I cannot try again.
    Regards,
    Marc
    Op 7 dec. 2012 om 00:41 heeft David Kastendick <[email protected]> het volgende geschreven:
    Re: Easier and better ways to solve current problems with Acrobat?
    created by David Kastendick in Acrobat Installation & Update Issues - View the full discussion
    The description of the issue you originally presented isn't something that I've seen happen to Acrobat when installed as a part of Creative Cloud.
    Could you provide a specific description of the behavior that occurs when you launch Acrobat XI now?
    Thanks,
    David
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4902597#4902597
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4902597#4902597
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4902597#4902597. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Acrobat Installation & Update Issues by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Maybe you are looking for

  • HDMI to VGA for apple TV

    I have a Proscan 4:3 TV that has a VGA input that I have used in the past. For AppleTV I am using component input now and It works fine at 480i, albeit with lower quality than I would like. Does anyone think that there is a way to get the 1080i throu

  • SBO 9.1 highlights power point presentation in italian

    Hello, I am looking for any material in ITALIAN about the new SAP Business One 9.1. release! Better if it's a power point presentation, like the one with all the highlights available in english and german. Is it available? Or is there an italian part

  • IPod has more than just music on it !

    Ok, this is gonna sound weird, but my brother just bought a video iPod and he downloaded his music onto it from iTunes. Now when he plays it, between EVERY song there are people's voices talking. All of them are in a foreign language also. Does anyon

  • Getting multiple Mobile device quarantine notices for previously approved devices.

    Recently we have started getting multiple notices to the user and to our help desk about a device being quarantined that is not. I've got one user getting them about every 15 minutes. When I use the following powershell this user is not listed Get-Ac

  • Forbidden Po num was rejected

    Hi All, I have the issue with error message. I reprocessed couple of times it, but its showing the same error mesage. Please let me know the solution for why its getting error. I have checked the SAP/XI/Engine is Active.   <?xml version="1.0" encodin