jlc Posted August 23, 2005 Report Share Posted August 23, 2005 Of course to have true transparencies you have to enable xcomposite which for some reason won't behave on my system. <{POST_SNAPBACK}> I don't think it is just you :) Every time I ever run it on a box, it explodes X, and it isn't my hardware. Link to comment Share on other sites More sharing options...
AussieJohn Posted August 23, 2005 Report Share Posted August 23, 2005 Lowe, I do not think you are correct in saying that one has to install all of kdegraphics just to ge ksnapshot. I have ksnapshot, kpdf and kview but I DO NOT have kdegraphics installed and never have done. There are some parts of kde that do require installing all of that part just to get the one feature you want, but kdegraphics is not one of them. See the two snapshots and you will see what I mean. Note that package-installation says there is no kdegraphics installed. Cheers. John. Link to comment Share on other sites More sharing options...
bb002 Posted August 24, 2005 Report Share Posted August 24, 2005 Here's my ugly desktop.....I like my BG picture though. As you can see I am using the dinky sysmon and weather piece for gnome. I'd like the expanded flavors that Bossieman and FX have. Link to comment Share on other sites More sharing options...
bvc Posted August 25, 2005 Report Share Posted August 25, 2005 (edited) I really like what they did to nautilus it's a lot easier to browse files with now.<{POST_SNAPBACK}> err.... a browser w/o an addressbar... :huh: ...that's brilliant Oh... well, good thing you can change it with gconf-editor What is the point of that I wonder? Heh, you got the treeview to the left, so why would you need another above? Sheds more light on why it has taken 4 years to get nautilus functional. Such wasted time on useless code! Edited August 25, 2005 by bvc Link to comment Share on other sites More sharing options...
tyme Posted August 25, 2005 Report Share Posted August 25, 2005 a file manager isn't necessarily a browser :P. you don't need an address bar. if you want to go to a specific location quick, just ctrl+l and type it in ;) (I actually found it quicker to click my way to it sometimes...) Link to comment Share on other sites More sharing options...
jlc Posted August 25, 2005 Report Share Posted August 25, 2005 (edited) When your bored with changing themes and write a new screen shot script Edited August 25, 2005 by cybrjackle Link to comment Share on other sites More sharing options...
bvc Posted August 25, 2005 Report Share Posted August 25, 2005 (edited) I guess that's why they call it browser? nautilus --browser ...ring any bells? :P That was my point...I like browser mode and use it more than spatial, yet keep the addybar and treeviw turned off until I need them, but if you have treeview on the left you don't need it on the top. So, instead of fixing the way treeview bounces around and is rarely in its properplace while browsing, they add this top thing. Cover bad code with more bad code Edited August 25, 2005 by bvc Link to comment Share on other sites More sharing options...
jlc Posted August 25, 2005 Report Share Posted August 25, 2005 (edited) If your interested, their is still some more i want to edit so play around #!/bin/bash clear echo -----------------=[ System Information ]=--------------------- echo "Name:" `grep $USER /etc/passwd |cut -d: -f5 | tr " " '\11'` echo "user:" `grep $USER /etc/passwd |cut -d: -f1 |tr : '\11'` echo "group:" `grep $USER /etc/passwd |cut -d: -f3 |tr : '\11'` echo "irc-nick 1:" `sed -n '/irc_nick1/p' $HOME/.xchat2/xchat.conf | sed 's/.........//'` echo "irc-nick 2:" `sed -n '/irc_nick2/p' $HOME/.xchat2/xchat.conf | sed 's/.........//'` echo "gaim-id:" `sed -n '/name/p' $HOME/.gaim/accounts.xml | sed '/setting/d' | sed 's/name//g' | sed 's/....//' |sed 's/...$//'` echo printf "%-16s\t%-16s\n" "FQDN:" "$HOSTNAME" printf "%-16s\t%-16s\n" "PWD:" "$PWD" echo -------------------------------------------------------------- printf "%-16s\t%-16s\n" "Operating System" `uname -o` printf "%-16s\t%-16s\n" "Distribution" "Fedora Core" printf "%-16s\t%-16s\n" "Release Name" "Rawhide" printf "%-16s\t%-16s\n" "Arch Type" `uname -p` echo -----------------=[ Security Features ]=------------------- printf "%-16s\t%-16s\n" "SELinux" "enforcing" printf "%-16s\t%-16s\n" "SELinux-type" "targeted" echo -----------------=[ Primary Features ]=------------------- printf "%-16s\t%-16s\n" "Kernel Version" `uname -r` printf "%-16s\t%-16s\n" "gcc version" `rpm -qa gcc` printf "%-16s\t%-16s\n" "glibc version" `rpm -qa glibc` printf "%-16s\t%-16s\n" "gcj version" `rpm -qa libgcj` printf "%-16s\t%-16s\n" "xorg version" `rpm -qa xorg-x11` printf "%-16s\t%-16s\n" "gnome version" `rpm -qa gnome-desktop` printf "%-16s\t%-16s\t%-10s\n" "shells" `rpm -qa bash` `rpm -qa ksh` printf "%-16s\t%-16s\n" "terminal" `rpm -qa gnome-terminal` printf "%-16s\t%-16s\n" "eclipse" `rpm -qa eclipse-platform` echo echo -----------------=[ Hardware Information ]=------------------- cat /proc/cpuinfo | grep "model name" cat /proc/cpuinfo | grep "cpu MHz" cat /proc/cpuinfo | grep "bogomips" cat /proc/cpuinfo | grep "cache size" echo -------------------------------------------------------------- cat /proc/meminfo | grep "MemTotal" cat /proc/meminfo | grep "MemFree" cat /proc/meminfo | grep "SwapTotal" cat /proc/meminfo | grep "SwapFree" echo -----------------=[ Desktop Information ]=------------------- printf "%-16s\t%-16s\n" "GTK2:" `gconftool-2 --get /desktop/gnome/interface/gtk_theme` printf "%-16s\t%-16s\n" "Metacity:" `gconftool-2 --get /apps/metacity/general/theme` printf "%-16s\t%-16s\n" "Icons:" `gconftool-2 --get /desktop/gnome/interface/icon_theme` echo -------------------------------------------------------------- #/sbin/lspci -v |grep -i video #/sbin/lspci -v |grep -i audio #/sbin/lspci -v |grep -i ethernet #echo -------------------------------------------------------------- uptime #who am i #sh $HOME/scripts/screenshot import -window root -quality 88 ~/misc/screenshots/`date +%Y%m%d-%H%M%S`-lg.jpg ripped cut out and used sed instead and added "gaim id" echo `cut -d: -f3 $HOME/.xchat2/xchat.conf | grep irc_nick[1]` echo `cut -d: -f3 $HOME/.xchat2/xchat.conf | grep irc_nick[2]` Edited August 25, 2005 by cybrjackle Link to comment Share on other sites More sharing options...
bvc Posted August 26, 2005 Report Share Posted August 26, 2005 :woops: that's my bad....I didn't notice that was 'Places' to the left and thought it was treeview. Nice to have so many diff ways for diff people :D Link to comment Share on other sites More sharing options...
Lowe Posted August 26, 2005 Report Share Posted August 26, 2005 Lowe, I do not think you are correct in saying that one has to install all of kdegraphics just to ge ksnapshot. I have ksnapshot, kpdf and kview but I DO NOT have kdegraphics installed and never have done.There are some parts of kde that do require installing all of that part just to get the one feature you want, but kdegraphics is not one of them. See the two snapshots and you will see what I mean. Note that package-installation says there is no kdegraphics installed. Cheers. John. <{POST_SNAPBACK}> Yes that's correct, however since I use arch they bundle them all together so you get a lot of useless stuff you don't need, since it has less package maintainers it would take longer to split the packages or so they say anyway. I really like what they did to nautilus it's a lot easier to browse files with now.<{POST_SNAPBACK}> err.... a browser w/o an addressbar... :huh: ...that's brilliant Oh... well, good thing you can change it with gconf-editor What is the point of that I wonder? Heh, you got the treeview to the left, so why would you need another above? Sheds more light on why it has taken 4 years to get nautilus functional. Such wasted time on useless code! <{POST_SNAPBACK}> Well, tree view is kinda annoying the new way feels a lot cleaner. Link to comment Share on other sites More sharing options...
Artificial Intelligence Posted August 28, 2005 Report Share Posted August 28, 2005 In the end it's all about personal taste I guess... Link to comment Share on other sites More sharing options...
Lowe Posted August 28, 2005 Report Share Posted August 28, 2005 In the end it's all about personal taste I guess... <{POST_SNAPBACK}> Sure is, it's just bvc thinks he's always right. :P Anyway i'll be using kde until the new gnome is stable. Click to enlarge! Link to comment Share on other sites More sharing options...
bvc Posted August 28, 2005 Report Share Posted August 28, 2005 Sure is, it's just bvc thinks he's always right. :P I haven't had any problems, well nautilus has quit 2 or 3 times, but that's normal for devel ...and you should read before posting :P :woops: that's my bad....I didn't notice that was 'Places' to the left and thought it was treeview. Nice to have so many diff ways for diff people :D <{POST_SNAPBACK}> Link to comment Share on other sites More sharing options...
bvc Posted August 28, 2005 Report Share Posted August 28, 2005 GTK: Smooth_blue-eyed_4_e17 download Smooth_blue-eyed_4_e17.tar.gz E17: blue-eyed get-e.org Eclair: gant get-e.org Icons: garGANTuan 1.6b Screenshot>Smooth_blue-eyed_4_e17 Link to comment Share on other sites More sharing options...
bvc Posted August 28, 2005 Report Share Posted August 28, 2005 GTK: Smooth_sharp_4_e17 download Smooth_sharp_4_e17.tar.gz E17: sharp get-e.org Icons: gperfection2 Screenshot>Smooth_sharp_4_e17 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now