I get the appeal of "minimal" in this case, but it just doesn't work for me.
Show HN: Howm – A Vim-like tiling X11 window manager
21–30 of 63 posts
Re: Show HN: Howm – A Vim-like tiling X11 window manager
#22Really dislike software with configuration baked into the code, every key binding and experiment requires recompilation which prevents managing it sanely through a package manager. I get the appeal of "minimal" in this case, but it just doesn't work for me.
Re: Show HN: Howm – A Vim-like tiling X11 window manager
#23Really dislike software with configuration baked into the code, every key binding and experiment requires recompilation which prevents managing it sanely through a package manager. I get the appeal of "minimal" in this case, but it just doesn't work for me.
Re: Show HN: Howm – A Vim-like tiling X11 window manager
#24Re: Show HN: Howm – A Vim-like tiling X11 window manager
#25Re: Show HN: Howm – A Vim-like tiling X11 window manager
#26Earlier quoted context omitted.
Hum... Are we talking about the same Windows ? Have you tried other tiling window managers ? i3 [0] comes to mind, but XMonad [1] and Awesome WM [2] are 2 other popular choices in this domain. There are plenty of others to pick from, too [3]. [0] http://i3wm.org/ [1] http://xmonad.org/ [2] http://awesome.naquadah.org/ [3] https://en.wikipedia.org/wiki/Tiling_window_manager
Thats a great list thank you! I never heard of i3wm I promise to read the docs. Yes, microsoft windows. I use version 8.1 and while most end users loathe the interface I've studied the "windows" key and "context menu" key and found it quite fast to perform all my daily operations (except web browsing) mouse-free. My experience with linux is that some programs are great but too many dont follow standard on very common…
Also I don't get how the Windows 8.1 window management comes even close to the 2 programs you mentioned (Ratpoison and Awesome WM). With both of those (or any other tiling manager) you can do much more than just maximize and snap a window to the sides. (you have virtual workspaces, automatic tiling, better switching, etc)
Re: Show HN: Howm – A Vim-like tiling X11 window manager
#27Earlier quoted context omitted.
Hum... Are we talking about the same Windows ? Have you tried other tiling window managers ? i3 [0] comes to mind, but XMonad [1] and Awesome WM [2] are 2 other popular choices in this domain. There are plenty of others to pick from, too [3]. [0] http://i3wm.org/ [1] http://xmonad.org/ [2] http://awesome.naquadah.org/ [3] https://en.wikipedia.org/wiki/Tiling_window_manager
Thats a great list thank you! I never heard of i3wm I promise to read the docs. Yes, microsoft windows. I use version 8.1 and while most end users loathe the interface I've studied the "windows" key and "context menu" key and found it quite fast to perform all my daily operations (except web browsing) mouse-free. My experience with linux is that some programs are great but too many dont follow standard on very common…
It's nice though that MS made this a default for Windows, while Linux still wants to ignore that MS ever managed to get those keys added to the keyboard. I've been using them for years, one as wm-key and the other as compose key to be able to write special characters (ë, ø, €, etc.) easily on a default qwerty keyboard. That still leaves one spare key on most keyboards
Re: Show HN: Howm – A Vim-like tiling X11 window manager
#28Earlier quoted context omitted.
I always liked Ion3 a lot despite the conflicts the author had with distros. http://notion.sourceforge.net/ is a fork of it that is maintained.
Another vote for Ion3, I tried dozens tiling wm-s, none of them come even close to ion3.
Re: Show HN: Howm – A Vim-like tiling X11 window manager
#29Really dislike software with configuration baked into the code, every key binding and experiment requires recompilation which prevents managing it sanely through a package manager. I get the appeal of "minimal" in this case, but it just doesn't work for me.
Re: Show HN: Howm – A Vim-like tiling X11 window manager
#30How does this differ from e.g. xmonad, which uses vi-like keybindings? It's specifically the bulk operators based on movement?
xmonad isn't modal. This apparently has three modes: 'normal', 'floating' and 'focus'. i3 also has modes: 'normal' and 'resize'.
set $mediamenu "media: [spc] play/pause [p] prev [n] next"
mode $mediamenu {
bindsym space exec "playerctl play-pause; i3-msg mode default"
bindsym p exec "playerctl previous"
bindsym n exec "playerctl next"
bindsym Escape mode "default"
bindsym $mod+m mode "default"
}
bindsym $mod+m mode $mediamenu
Now $mod+m will enter 'media' mode, with its own set of keybindings.