LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


View Poll Results: POLL - KDE or GNOME
KDE 27 38.57%
GNOME 16 22.86%
Other 27 38.57%
Voters: 70. You may not vote on this poll

Reply
  Search this Thread
Old 08-04-2021, 08:53 AM   #16
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84

Quote:
Originally Posted by Timothy Miller View Post
doesn't remember locations of applications.
I wouldn't blame this one on GNOME although it can do it, it can store the information in a text file under your .config folder or something.

I don't understand why programmers don't handle the position and sizing, maximize or not, of their own apps.
That's the way I programmed my stuff for Windows and now, Linux.
 
Old 08-04-2021, 09:26 AM   #17
EdGr
Senior Member
 
Registered: Dec 2010
Location: California, USA
Distribution: I run my own OS
Posts: 1,003

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
Quote:
Originally Posted by vmelkon View Post
I don't understand why programmers don't handle the position and sizing, maximize or not, of their own apps.
That's the way I programmed my stuff for Windows and now, Linux.
See the lame excuse in the documentation for gtk_window_get_position ().

https://docs.gtk.org/gtk3/method.Win..._position.html

Synopsis: applications saving their window positions does not work on Wayland.
Ed
 
Old 08-04-2021, 11:30 AM   #18
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84
Quote:
Originally Posted by EdGr View Post
See the lame excuse in the documentation for gtk_window_get_position ().

https://docs.gtk.org/gtk3/method.Win..._position.html

Synopsis: applications saving their window positions does not work on Wayland.
Ed
Well, I disagree with the guys at GTK or GNOME bc there is a case that I think they won't be able to handle.
If in my home folder, I have 2 copies of my program in separate folders: Folder1 and Folder2
I run Folder1/MyProgram and I close it. The program saves it's position + size in Folder1/Config.ini
I run Folder2/MyProgram and I close it. The program saves it's position + size in Folder2/Config.ini

Now, I move MyProgram and Config.ini that is located in Folder 2 to another folder that is called ZippyFolder.
If I run MyProgram, the position + size will be correct.

So, if I leave it up to GNOME, how will it handle this situation?

Quote:
Originally Posted by EdGr View Post
Synopsis: applications saving their window positions does not work on Wayland.
I'm sure I can always query the windows size and position and save it to my Config.ini
 
Old 08-04-2021, 01:29 PM   #19
EdGr
Senior Member
 
Registered: Dec 2010
Location: California, USA
Distribution: I run my own OS
Posts: 1,003

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
Quote:
Originally Posted by vmelkon View Post
I'm sure I can always query the windows size and position and save it to my Config.ini
Not under Wayland. Re-read the documentation.

This is why people don't like GNOME: not only did GNOME make poor design decisions, but they are trying to force them upon all software by removing previously-working functionality.
Ed
 
Old 08-04-2021, 06:40 PM   #20
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84
Quote:
Originally Posted by EdGr View Post
Not under Wayland. Re-read the documentation.

This is why people don't like GNOME: not only did GNOME make poor design decisions, but they are trying to force them upon all software by removing previously-working functionality.
Ed
OK, I missed that part:
The reliability of this function depends on the windowing system currently in use. Some windowing systems, such as Wayland, do not support a global coordinate system, and thus the position of the window will always be (0, 0)

but Linux in general seems to have design problem since it says:
"Others, like X11, do not have a reliable way to obtain the geometry of the decorations of a window if they are provided by the window manager."


The Qt wiki also has some interesting documentation about X11:
https://doc.qt.io/qt-5/application-w...indow-geometry

Nor does X11 provide a way to maximize a window. QWidget::showMaximized() has to emulate the feature. Its result depends on the result of QWidget::frameGeometry() and the capability of the window manager to do proper window placement, neither of which can be guaranteed.
 
Old 08-04-2021, 06:55 PM   #21
m.a.l.'s pa
Member
 
Registered: Oct 2007
Location: albuquerque
Distribution: Debian, Arch, Kubuntu
Posts: 366

Rep: Reputation: 139Reputation: 139
Well, I just want to point out that a lot of people, including myself, enjoy using GNOME. Folks who dislike it, hate it, whatever, that's fine, but just because you don't like it doesn't mean somebody else won't or shouldn't.

I don't know if folks who like it come at with a different mindset than those who don't, or what. I don't try to make it look like or do what some other DE does.

I don't feel like I have any trouble getting things done when I'm using GNOME. On other systems, I use Xfce or KDE or Openbox or Fluxbox or LXQt. I've used other DEs/WMs in the past. Some I like better than others, but they're all kinda cool to me. I certainly don't feel that I dislike or hate any one of them. It's fun exploring and learning about these things. Also, in every case, the more I use it the more comfortable I become with it. I mean, unless it's too buggy to use.

And I guess that's why I can't really choose between KDE Plasma and GNOME (I wish there was a "no preference" option or something in the poll). But I'm glad that it's Linux; I can use either one, whenever I feel like it!
 
1 members found this post helpful.
Old 08-04-2021, 08:37 PM   #22
EdGr
Senior Member
 
Registered: Dec 2010
Location: California, USA
Distribution: I run my own OS
Posts: 1,003

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
Quote:
Originally Posted by vmelkon View Post
but Linux in general seems to have design problem since it says:
"Others, like X11, do not have a reliable way to obtain the geometry of the decorations of a window if they are provided by the window manager."
That seems to be more the exception than the rule. The window managers that I have used allow applications to save/restore their window sizes and positions with pixel-perfect accuracy.
Ed
 
Old 08-04-2021, 10:47 PM   #23
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84
Quote:
Originally Posted by m.a.l.'s pa View Post
Well, I just want to point out that a lot of people, including myself, enjoy using GNOME. Folks who dislike it, hate it, whatever, that's fine, but just because you don't like it doesn't mean somebody else won't or shouldn't.
It's a personal thing. Some people like certain foods. Some people like certain music or certain cars or certain movies.
Maybe it is a matter of habit. I think our brain gets use to certain things.

Quote:
Originally Posted by m.a.l.'s pa View Post
I don't know if folks who like it come at with a different mindset than those who don't, or what. I don't try to make it look like or do what some other DE does.
I come from Windows. When Windows stopped being like Windows, I jumped ship. Win 8 and 10 are too ugly. It is colorless and lifeless looking. I think it was Win 8 that had some full screen calculator, email client, control panel and a bunch of other apps with gigantic buttons.
Also, someone gave a family member a laptop with Win 10. Nothing could be resized. Very bizarre shit. I looked on the web to fix that up.
The new control panel.
The forced update. Also, the updates are done secretly and when you want to shut down or reboot, they really fuck you good with a 1 h.


Quote:
Originally Posted by m.a.l.'s pa View Post
And I guess that's why I can't really choose between KDE Plasma and GNOME (I wish there was a "no preference" option or something in the poll). But I'm glad that it's Linux; I can use either one, whenever I feel like it!
I guess I should have put a "bi" option or "poly".

Last edited by vmelkon; 08-04-2021 at 10:49 PM.
 
Old 08-05-2021, 08:32 AM   #24
boughtonp
Senior Member
 
Registered: Feb 2007
Location: UK
Distribution: Debian
Posts: 3,629

Rep: Reputation: 2557Reputation: 2557Reputation: 2557Reputation: 2557Reputation: 2557Reputation: 2557Reputation: 2557Reputation: 2557Reputation: 2557Reputation: 2557Reputation: 2557
Quote:
Originally Posted by EdGr View Post
The window managers that I have used allow applications to save/restore their window sizes and positions with pixel-perfect accuracy.
This seems like it should be a given. How can anything be classified as a windowing system/manager if it can't even handle such fundamental information as size and position? :/

 
Old 08-05-2021, 09:06 AM   #25
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,458

Rep: Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353Reputation: 2353
I'm firmly in the 'other' camp, as both kde & gnome are too much, and too slow.
 
1 members found this post helpful.
Old 09-02-2021, 03:56 PM   #26
fixitmanarizona
Member
 
Registered: Aug 2017
Posts: 52

Rep: Reputation: Disabled
Lightbulb Mate

KDE: eye candy
Gnome 3: messed up
XFCE4: also currently messed up
Cinnamon: too limited
MATE: ah HAH!.. based on Gnome 2.. and sane defaults, pretty much all I want.
Yeah, I'm lazy I use (*buntu.
But I'm considering MX.
 
Old 09-03-2021, 02:20 AM   #27
linustalman
LQ Guru
 
Registered: Mar 2010
Location: Ireland
Distribution: Debian 12 Bookworm
Posts: 5,741

Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Smile

1. MATE, 2. Xfce
 
Old 11-11-2021, 05:37 PM   #28
edwardp
Member
 
Registered: Jun 2003
Location: Massachusetts, U.S.A.
Distribution: Debian (unstable)
Posts: 106

Rep: Reputation: 28
LXQt
 
Old 12-21-2021, 12:00 PM   #29
joel2001k
Member
 
Registered: Mar 2007
Distribution: GNU/Linux debian unstable main
Posts: 95

Rep: Reputation: 17
mate!
 
Old 12-21-2021, 01:22 PM   #30
SlowCoder
Senior Member
 
Registered: Oct 2004
Location: Southeast, U.S.A.
Distribution: Debian based
Posts: 1,250

Rep: Reputation: 164Reputation: 164
As expected, this poll went a bit sideways. And really, what's it's purpose, anyway?

I can use either, but prefer KDE. However, it isn't KDE/Gnome that makes the distribution; it's just an app/suite that runs on top of X. Most modern distros provide access to most common DEs.

Quote:
Originally Posted by fixitmanarizona View Post
Cinnamon: too limited
I'm curious in what ways?
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
KDE apps crash on Gnome, Gnome apps work on my KDE - Gnome/KDE integration Happy Gimper Linux - Software 0 03-18-2008 09:28 AM
Poll: (Without the poll) - How is Linux used in your workplace? SlowCoder General 13 09-11-2007 11:03 PM
POLL: gnome, kde, xfce, window maker osc~ Slackware 11 07-14-2007 04:51 PM
Gnome or KDE poll JohnStormrider Linux - General 2 09-18-2005 05:53 PM
Poll on fluxbox, gnome, kde and blackbox Nz_Boy_2004 Linux - Software 11 09-07-2004 08:39 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 05:21 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