LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > 2019 LinuxQuestions.org Members Choice Awards
User Name
Password
2019 LinuxQuestions.org Members Choice Awards This forum is for the 2019 LinuxQuestions.org Members Choice Awards.
You can now vote for your favorite projects/products of 2019. This is your chance to be heard! Voting ends on February 12th.


Notices


View Poll Results: Window Manager of the Year
awesome 6 3.75%
bspwm 0 0%
cwm 2 1.25%
dwm 6 3.75%
Fluxbox 33 20.63%
FVWM 14 8.75%
herbstluftwm 2 1.25%
i3 19 11.88%
IceWM 9 5.63%
JWM 10 6.25%
MetaCity 6 3.75%
Openbox 37 23.13%
Ratpoison 0 0%
spectrwm 1 0.63%
twm 5 3.13%
Window Maker 6 3.75%
xmonad 4 2.50%
Voters: 160. You may not vote on this poll

Reply
  Search this Thread
Old 01-02-2020, 07:30 PM   #1
jeremy
root
 
Registered: Jun 2000
Distribution: Debian, Red Hat, Slackware, Fedora, Ubuntu
Posts: 13,604

Rep: Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103
Window Manager of the Year


If you are looking for KDE, Gnome, MATE, Unity, etc they are in the Desktop Environment Award.

NOTE: Window Managers that are rarely used outside of their Desktop Environment counterparts are no longer included in this category, based on feedback. This includes: Compiz, KWin, Marco, Muffin, Mutter and xfwm4.

--jeremy
 
Old 01-03-2020, 07:52 AM   #2
YesItsMe
Member
 
Registered: Oct 2014
Posts: 916

Rep: Reputation: 313Reputation: 313Reputation: 313Reputation: 313
While tiling window managers are very similar and can easily replace each other, Window Maker remains my non-tiling favorite.
 
Old 01-03-2020, 08:05 AM   #3
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
Fluxbox, hands down for me. Simple, fast, light, it just works. Second favorite would be cwm.
 
Old 01-03-2020, 01:06 PM   #4
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,147
Blog Entries: 6

Rep: Reputation: 1834Reputation: 1834Reputation: 1834Reputation: 1834Reputation: 1834Reputation: 1834Reputation: 1834Reputation: 1834Reputation: 1834Reputation: 1834Reputation: 1834
Code:
Fluxbox, hands down for me. Simple, fast, light, it just works
Yes, try these in your ~/.fluxbox/keys for mouse free operation.
Code:
# Use arrow keys to move-resize.
# Window resize, all except arrow keys disabled. Escape to exit.
Control Mod4 r              :KeyMode ResizeMode
ResizeMode: None Up         :ResizeVertical -8
ResizeMode: None Down       :ResizeVertical +8
ResizeMode: None Left       :ResizeHorizontal -8
ResizeMode: None Right      :ResizeHorizontal +8

# Window move, all except arrow keys disabled. Escape to exit.
Control Mod4 m              :KeyMode MoveMode
MoveMode: None Up           :MoveUp 20
MoveMode: None Down         :MoveDown 20
MoveMode: None Left         :MoveLeft 20
MoveMode: None Right        :MoveRight 20

#Move mouse/click with xdotool
Control Mod1 Up     :Exec (xdotool mousemove_relative -- 0 -15)
Control Mod1 Down   :Exec (xdotool mousemove_relative 0 15)
Control Mod1 Right  :Exec (xdotool mousemove_relative 15 0)
Control Mod1 Left   :Exec (xdotool mousemove_relative -- -15 0)
Control Mod1 x      :Exec (xdotool click 1)
Control Mod1 v      :Exec (xdotool click 3)
Control Mod1 c      :Exec (xdotool click 2)

#Scroll Page right, Page left
Shift Right :Exec str=$(printf "%10s"); xdotool key $(echo "${str// /Right }")
Shift Left :Exec str=$(printf "%10s"); xdotool key $(echo "${str// /Left }")

#Tab all (same as focused) in workspace
Mod4 Up :Attach (Name=[current]) (workspace=[current]) #(iconhidden=no)	
#Detach all (same as focused) in workspace
Mod4 Down :ForEach {DetachClient} (Name=[current]) (workspace=[current])

#Cycle through tabs in group
Mod4 Tab :NextTab 					
Mod4 Shift Tab :PrevTab
I don't know if it should be the WM of the year. But it works fine for me.
 
Old 01-03-2020, 01:23 PM   #5
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
Thanks Teckk. I actually use a combo of mouse and key board and it works well for me. Always good to have extra info in my toolbox though.
 
Old 01-03-2020, 02:07 PM   #6
ChuangTzu
Senior Member
 
Registered: May 2015
Location: Where ever needed
Distribution: Slackware/Salix while testing others
Posts: 1,718

Rep: Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857Reputation: 1857
I was torn between flux and icewm, but voted flux.
 
Old 01-03-2020, 02:18 PM   #7
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
I also like IceWM but if it takes me longer than 30 minutes or so to configure, I won't use it. IceWM just has a fairly large config for me. Not fvwm large, that one is ridiculous, but still beyond my patience level Flux's config is extremely simple to me. One other reason I like cwm as well - very simple config. That also means limited capability to tweak so it's a balance.
 
Old 01-04-2020, 09:45 PM   #8
FredGSanford
Senior Member
 
Registered: Nov 2005
Location: USA
Distribution: Mageia 7 - Debian 10 - Artix Linux
Posts: 1,142
Blog Entries: 5

Rep: Reputation: 207Reputation: 207Reputation: 207
Openbox for me...long time fav!
 
Old 01-05-2020, 04:28 AM   #9
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Been using openbox for so long I couldn't get away from it even if I wanted to...
That said, it's the stacking WM with the best manual tiling & keyboard navigation capabilities I have come across.
 
Old 01-05-2020, 09:56 AM   #10
Geist
Member
 
Registered: Jul 2013
Distribution: Slackware 14 / current
Posts: 442

Rep: Reputation: 196Reputation: 196
xmonad.
It's a bit crummy to make the config file more generalized because it requires fiddling with the IO monad, but other than that, it's the best WM I've used.
Tried it on a whim, worked splendidly with my dual monitor setup, and the haskell aspect was (and still is) exotic.
 
Old 01-05-2020, 05:01 PM   #11
anticapitalista
antiX
 
Registered: May 2005
Location: Greece
Distribution: antiX using herbstluftwm, fluxbox, IceWM and jwm.
Posts: 631

Rep: Reputation: 190Reputation: 190
herbstluftwm for me.
 
Old 01-06-2020, 01:51 PM   #12
e3k
LQ Newbie
 
Registered: Feb 2011
Location: EU
Distribution: arch and gentoo and ubuntu 32bit for hw ressurections.
Posts: 22

Rep: Reputation: 0
xfce?
 
Old 01-06-2020, 01:53 PM   #13
jeremy
root
 
Registered: Jun 2000
Distribution: Debian, Red Hat, Slackware, Fedora, Ubuntu
Posts: 13,604

Original Poster
Rep: Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103Reputation: 4103
xfce is in the desktop environment category.

--jeremy
 
Old 01-06-2020, 05:25 PM   #14
v32itas
LQ Newbie
 
Registered: Jul 2017
Location: Europe
Distribution: OpenBSD, Slackware
Posts: 27
Blog Entries: 1

Rep: Reputation: Disabled
spectrwm
 
Old 01-07-2020, 12:39 AM   #15
e3k
LQ Newbie
 
Registered: Feb 2011
Location: EU
Distribution: arch and gentoo and ubuntu 32bit for hw ressurections.
Posts: 22

Rep: Reputation: 0
Quote:
Originally Posted by jeremy View Post
xfce is in the desktop environment category.

--jeremy
thanks. voted there.
 
  


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
Window Manager of the Year jeremy 2005 LinuxQuestions.org Members Choice Awards 112 05-17-2006 01:16 AM

LinuxQuestions.org > Forums > 2019 LinuxQuestions.org Members Choice Awards

All times are GMT -5. The time now is 10:17 PM.

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