LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 07-22-2011, 01:20 PM   #16
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723

Quote:
Originally Posted by Thor_2.0 View Post
I suspect I dont need to remove Gnome as XFCE seems to use some of the parts of Gnome...
Unless you mean that you still use GNOME apps under Xfce, then you shouldn't need GNOME. If you mean GTK+, that's not part of GNOME.
 
1 members found this post helpful.
Old 07-22-2011, 01:24 PM   #17
SL00b
Member
 
Registered: Feb 2011
Location: LA, US
Distribution: SLES
Posts: 375

Rep: Reputation: 112Reputation: 112
Nice example with the TI calculators, frieza. I was taking Trig in high school the first year the school decided to make the TI-80 graphing calculator a standard issue for that class, and it wasn't even a month before someone had used their very basic programming language to produce a text-based football game.

And honestly, that's the value of having games, because here was a case of a student who learned something new in order to do something fun, and that's a great motivator. Personally, I got my start in computers by playing games, and I'm certain many of you did so as well.

Also, i think that playing video games develops certain "outside the box" modes of thinking, because nothing can drop you into an alien world with its own operating rules and force you to come up with a solution (with repeated opportunities if you fail) better than a computer game. So yeah, I encourage my daughter to play games, within limits. I'm impressed with her technical savvy at such a young age, so some returns on that investment are already apparent.

But yeah, no games in my Linux environments.
 
Old 07-22-2011, 01:33 PM   #18
ButterflyMelissa
Senior Member
 
Registered: Nov 2007
Location: Somewhere on my hard drive...
Distribution: Manjaro
Posts: 2,766
Blog Entries: 23

Rep: Reputation: 411Reputation: 411Reputation: 411Reputation: 411Reputation: 411
Quote:
I don't see how it could possibly harm anything, it doesn't touch your existing desktop.

Anyway, I installed a lot of window managers and desktops to try, and none of them did any harm.
Okay, well, it's possibly an aftershock from seeing Gnome3...but, thanks for the "nudge"...
Most stems from my poor/non-existent knowledge around X11 and how it relates to things like XFCE, Gnome and so on...

Hey, I'm still a noob
 
Old 07-22-2011, 01:48 PM   #19
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Quote:
Originally Posted by Thor_2.0 View Post
Most stems from my poor/non-existent knowledge around X11 and how it relates to things like XFCE, Gnome and so on...
Maybe this should be split into a separate thread.

Anyway, X11 has no concept of icons, panels, or even buttons and window frames. All it is is a way for applications to draw stuff. Basically, it lets a program create a rectangle (called a "window", but it's a very different concept then the concept of windows on a desktop). A program can draw in this widnow, recieve events from it, and create child windows (GUI controls such as buttons are typically implemented using child windows). Note that all widnows are children of the root window, which is the size of the whole screen.

A window manager is a program that draws frames around top-level windows (children of the root window), and lets you move and resize them by manipulatign the frame. You can actually use X11 without a window manager, but you will not be able to resize or move the windows, and they will have no borders.

A desktop environment is basically a set of integrated applications, typically including a window manager, panel, file manager, etc.

For example, you can start X without a window manager like this:

Code:
xinit $(which xterm)
It will start X and launch an xterm. Now, from that xterm, you can start a window manager:

Code:
xfwm4 &
and a panel:

Code:
xfce4-panel &
and the program that manages the desktop icons:

Code:
xfdesktop &
 
1 members found this post helpful.
Old 07-22-2011, 02:02 PM   #20
ButterflyMelissa
Senior Member
 
Registered: Nov 2007
Location: Somewhere on my hard drive...
Distribution: Manjaro
Posts: 2,766
Blog Entries: 23

Rep: Reputation: 411Reputation: 411Reputation: 411Reputation: 411Reputation: 411
Okay, this I understand. So, there was a safety net all along...boy, I feel like this walk-over-bottles-blindfolded...

Thanks!
 
Old 07-22-2011, 02:21 PM   #21
frieza
Senior Member
 
Registered: Feb 2002
Location: harvard, il
Distribution: Ubuntu 11.4,DD-WRT micro plus ssh,lfs-6.6,Fedora 15,Fedora 16
Posts: 3,233

Rep: Reputation: 406Reputation: 406Reputation: 406Reputation: 406Reputation: 406
Quote:
Originally Posted by SL00b View Post
Nice example with the TI calculators, frieza. I was taking Trig in high school the first year the school decided to make the TI-80 graphing calculator a standard issue for that class, and it wasn't even a month before someone had used their very basic programming language to produce a text-based football game.

And honestly, that's the value of having games, because here was a case of a student who learned something new in order to do something fun, and that's a great motivator. Personally, I got my start in computers by playing games, and I'm certain many of you did so as well.

Also, i think that playing video games develops certain "outside the box" modes of thinking, because nothing can drop you into an alien world with its own operating rules and force you to come up with a solution (with repeated opportunities if you fail) better than a computer game. So yeah, I encourage my daughter to play games, within limits. I'm impressed with her technical savvy at such a young age, so some returns on that investment are already apparent.

But yeah, no games in my Linux environments.
actually i was thinking more along the lines of the graphing calculator being hacked to allow programs written in the ti calculator's native Z80 assembly as opposed to basic, and this became so popular that TI started designing calculators to natively allow assembly programs without having to be hacked, but yes i had friends who wrote quite a few basic games for their ti calculators

heck one of the first graphical computer games was written in 1952 for an EDSAC computer (think room sized machine), in short, as long as there has been the ability to program computers, someone has had the brilliant idea to program a some sort of game for them, even the multi million dollar room sized machines were at times used by the propeller heads that used them to play games.

the only difference today is computers have become cheaper, smaller, more prolific and easier to program so the games for them have become more complex and more advanced.

Last edited by frieza; 07-22-2011 at 02:22 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: The Real Future of Linux and FOSS (Is Not Shiny Toys) LXer Syndicated Linux News 0 12-29-2010 11:00 AM
LXer: New Toys: Interesting Mobile Linux Devices at CES LXer Syndicated Linux News 0 01-12-2010 04:20 AM
LXer: Fun Brain Games and Geek Toys LXer Syndicated Linux News 0 10-17-2009 09:11 AM
xmltv Linux Toys book zuessh Linux - Software 0 06-13-2004 12:18 PM
PDA Toys - linux Replacements... PhilD Linux - Software 1 10-01-2003 12:16 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 03:31 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration