Search Members Help

» Welcome Guest
[ Log In :: Register ]

Mini-ITX Boards Sale, Fanless BareBones Mini-ITX, Bootable 1G DSL USBs, 533MHz Fanless PC <-- SALE $200 each!
Get The Official Damn Small Linux Book. DSL Market , Great VPS hosting provided by Tektonic
Pages: (2) </ [1] 2 >/

[ Track this topic :: Email this topic :: Print this topic ]

reply to topic new topic new poll
Topic: Need traditional windows/gnome/kde-style gui< Next Oldest | Next Newest >
cyprus Offline





Group: Members
Posts: 5
Joined: Jan. 2006
Posted: Jan. 14 2006,07:48 QUOTE

How would I go about getting a different gui set up in DSL? Something akin to icewm would be great. I would just use gnome or kde, but this machine is fairly low-end (AMD K-6 350, 196 MB RAM), and is going to be used solely as a fileserver and mp3 jukebox. However, the Fluxbox interface is annoying enough to definitely make me want to change it.
Back to top
Profile PM 
pr0f3550r Offline





Group: Members
Posts: 378
Joined: Dec. 2005
Posted: Jan. 14 2006,10:22 QUOTE

Mydsl Windows managers

Icewm is there


--------------
THE QEMU FORUM: http://qemu.dad-answers.com/index.php

QEMU ON WINDOWS: http://www.h7.dion.ne.jp/~qemu-win/

How to use floppy, CD-ROM and hard disk - http://www.h7.dion.ne.jp/~qemu-win/HowToFloppyCdrom-en.html

How to use network - http://www.h7.dion.ne.jp/~qemu-win/HowToNetwork-en.html
Back to top
Profile PM 
skaos Offline





Group: Members
Posts: 430
Joined: April 2004
Posted: Jan. 14 2006,16:37 QUOTE

You could also test jwm which is built into the last versions of DSL - you can switch to it from one of the fluxbox menus.
Back to top
Profile PM 
roberts Offline





Group: Members
Posts: 4983
Joined: Oct. 2003
Posted: Jan. 14 2006,16:37 QUOTE

My understanding is that the icewm extension has not been updated and could cause some issues.

Did you try the other builtin wm, jwm? It is similiar to icewm.
Use boot option:
desktop=jwm

or use menu option to switch to jwm
Back to top
Profile PM WEB 
mikshaw Offline





Group: Members
Posts: 4856
Joined: July 2004
Posted: Jan. 15 2006,20:15 QUOTE

Today I built icewm 1.2.23 to run in /opt for a uci package.  It seems to be working without trouble so far.  The only issue i see at this time is that it has no menu....maybe a fluxbox-to-icewm conversion script could be added.

I refuse to make it plug-and-play (overwriting .xinitrc or any other files), so the user will need to make the standard .xinitrc edits himself, plus changing the .desktop file in dsl2.x.  Although it's noticeably slower than fluxbox or jwm, it looks nice...i don't remember icewm being pretty =o)

EDIT: I found a flux-to-icewm perl script here in the forums, but apparently it still needs some work.  Besides, I know nothing about Perl.  So I made one in Bash.  The code could be cleaner than it is, but it works...i'm just not a master of regexp.  I still have to make it check to see if it can write the menu file (won't work if the .icewm directory hasn't been made yet)

Code Sample
#!/bin/bash

#  flux2icewm.bash
#  convert fluxbox menu to icewm menu
#  mikshaw 2006

INPOOT="$HOME/.fluxbox/menu"
OUTPOOT="$HOME/.icewm/menu"

echo "Writing menu to $OUTPOOT"

cat $INPOOT | egrep -v "#|^ *$" | while read LINE; do
TYPE=`echo $LINE | sed 's/(.*$//;s/^[ \t]//;s/[ \t]$//;s/^\[//;s/\]$//'`
LABEL=`echo $LINE | sed 's/^.*]//;s/{.*$//;s/^[ \t]//;s/[ \t]$//;s/^(//;s/)$//'`
COMMAND=`echo $LINE | sed 's/^.*)//;s/^[ \t]//;s/[ \t]$//'|grep {*}|sed 's/^\{//;s/\}$//'`
ICON=`echo $COMMAND | awk '{print $1}'`
case $TYPE in
begin)
SUBS=0
echo "prog \"Rebuild menu\" - xterm -e /opt/icewm/bin/flux2icewm" > $OUTPOOT
;;
submenu)
SUBS=$(($SUBS+1))
echo "menu \"$LABEL\" folder {" >> $OUTPOOT
;;
separator)
echo "separator" >> $OUTPOOT
;;
exec)
echo "prog \"$LABEL\" $ICON $COMMAND" >> $OUTPOOT
echo -n "."
;;
restart)
echo "restart \"$LABEL\" $ICON $COMMAND" >> $OUTPOOT
;;
end*)
if [ $SUBS -gt 0 ]; then
SUBS=$(($SUBS-1))
echo "}" >> $OUTPOOT
else
echo " done."
fi
;;
esac
done


--------------
http://www.tldp.org/LDP/intro-linux/html/index.html
Back to top
Profile PM WEB 
8 replies since Jan. 14 2006,07:48 < Next Oldest | Next Newest >

[ Track this topic :: Email this topic :: Print this topic ]

Pages: (2) </ [1] 2 >/
reply to topic new topic new poll
Quick Reply: Need traditional windows/gnome/kde-style gui

Do you wish to enable your signature for this post?
Do you wish to enable emoticons for this post?
Track this topic
View All Emoticons
View iB Code