<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[HyperForum — What's the lightest desktop environment?]]></title>
	<link rel="self" href="https://forums.hyperbola.info/extern.php?action=feed&amp;tid=450&amp;type=atom" />
	<updated>2023-05-13T02:51:55Z</updated>
	<generator>PunBB</generator>
	<id>https://forums.hyperbola.info/viewtopic.php?id=450</id>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=6134#p6134" />
			<content type="html"><![CDATA[<p>Maybe, I need to add the .cwmrc file.</p><p>I don&#039;t know how to do that though or what it should look like or where it should go.</p><p>.cwmrc&nbsp; is the config file.</p>]]></content>
			<author>
				<name><![CDATA[zapper]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=117</uri>
			</author>
			<updated>2023-05-13T02:51:55Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=6134#p6134</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5846#p5846" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>zapper wrote:</cite><blockquote><p>Hmm...well, my problem is I didn&#039;t know what CM1 did.</p><p>I wanted to know because I couldn&#039;t friggin start a terminal to figure anything out.&nbsp; So yeah, you probably are right. </p><p>But tell me, does what you did above work with console-tdm?</p><p>I use tdm as my display manager, hence my question...</p></blockquote></div><p>I never heard of tdm. Github says: &quot;The TDM display manager is a wrapper script for startx&quot;<br />&quot;It has a helper script, called tdmctl to manage tdm sessions. Each tdm session is a symlink to an executable script that will be called in place of the final exec in .xinitrc.&quot;</p><p>I don&#039;t see why they&#039;d conflict, UNIX philosophy: components must be interchangeable. The problem you encountered would just as likely happen with other wms, which function in a similar way to cwm, so the underlying mechanism needs to be investigated. I just know that cwm can be called without exec or ampersand (&amp;), but not without issues, maybe you could try </p><div class="codebox"><pre><code>cwm &amp;
exec tdm --xstart</code></pre></div><p> not sure</p><p>And reading through it sounds like it would just be a matter of messing with .xinitrc, but I don&#039;t know the program well enough to say what would be the fix</p><p>But on the cwm side of things: when cwm starts up it&#039;s <em>supposed</em> to show a black screen. Look at keybindings. CM-Return to open a terminal. You can also edit .xinitrc to start a terminal (or anything else) automatically when xenocara starts.</p>]]></content>
			<author>
				<name><![CDATA[auanta]]></name>
			</author>
			<updated>2023-03-12T02:09:53Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5846#p5846</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5843#p5843" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>auanta wrote:</cite><blockquote><div class="quotebox"><cite>zapper wrote:</cite><blockquote><p>How does catwm and cwm compare to jwm on the load average for your systems? Very curious, but also wondering how you even set up cwm.</p><p>RTFM tells me almost nothing lol.</p><p>OpenBSD&#039;s one weakness is that documentation is lacking on some of that.</p></blockquote></div><p>I recall the manpage for cwm being rather complete. I remember looking at BSD forums for config examples. There are configuration guides on cwm out there. To get started just install cwm and put this in your .cwmrc:</p><div class="codebox"><pre><code># KEYBINDINGS:
# 4 = mod (windows key)
# S = shift
# C = control
# M = meta (alt)

# (optional) make space for termbar or your favorite status bar
#gap 18 0 0 0

bind-key XF86MonBrightnessUp    &quot;light -A 5&quot;
bind-key XF86MonBrightnessDown  &quot;light -U 5&quot;
bind-key CM-Left    window-snap-left
bind-key CM-Right    window-snap-right
bind-key CM-Up        window-snap-up
bind-key CM-Down    window-snap-down
bind-key MS-Right    window-htile
bind-key MS-Up        window-vtile
bind-key MS-Left    window-hmaximize
bind-key MS-Down    window-vmaximize
bind-key MS-i        &quot;iceweasel-uxp&quot;

command iceweasel-uxp    &quot;firejail --seccomp --noroot --disable-mnt iceweasel-uxp&quot;
command elinks &quot;st -e elinks&quot;
#command myscript &quot;st -n myscript -g  -i -c myscript -T myscript -e ~/path/to/myscript

autogroup 0 &quot;termbar&quot;
autogroup 1 &quot;st&quot;
autogroup 2 &quot;alsamixer&quot;
autogroup 3 &quot;mpv&quot;
autogroup 3 &quot;moc&quot;
autogroup 4 &quot;conky&quot;
autogroup 5 &quot;iceweasel, iceweasel-uxp&quot;
autogroup 5 &quot;elinks&quot;

# this says to do not draw borders around these
# e.g. ignore xclock
#ignore    &quot;myscript&quot;

# colors
color menubg black
color font white
color activeborder purple
#color inactive border gray
color selfont red
color urgencyborder red
color menufg black 

# window options 
# border width 2
# snap windows to edges at 1 pixels distance
snapdist 1

# turn on sticky group mode
# sticky yes

# Set default font for menus
#fontname &quot;sans-serif:pixelsize=14:bold&quot;
fontname &quot;dejavu sans mono:size=12&quot;</code></pre></div><p>Then put this in your .xinitrc</p><div class="codebox"><pre><code>[[ -f ~/.Xresources ]] &amp;&amp; xrdb -merge -I$HOME ~/.Xresources
exec cwm</code></pre></div><p>I think your confusion may be with the .xinitrc file and calling xinit automatically, I configured these things by hand. </p><p>When experimenting with cwm you can Ctrl-Alt-Shift-Q to quit cwm and go back to the basic shell. xinit to start cwm again. This avoids reboots.</p><p>Any questions, just ask</p></blockquote></div><p>Hmm...well, my problem is I didn&#039;t know what CM1 did.</p><p>I wanted to know because I couldn&#039;t friggin start a terminal to figure anything out.&nbsp; So yeah, you probably are right. </p><p>But tell me, does what you did above work with console-tdm?</p><p>I use tdm as my display manager, hence my question...</p>]]></content>
			<author>
				<name><![CDATA[zapper]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=117</uri>
			</author>
			<updated>2023-03-12T00:23:12Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5843#p5843</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5842#p5842" />
			<content type="html"><![CDATA[<p>I&#039;m aware of xbanish because of my ratpoison adventures, but&nbsp; I also have open dyslexic as my font. TYVM Hyperbola for making it availible BTY. Hence I also love my mouse, so fittstool too. Typing things the wrong way around can be a pita. Variety is a wonderful thing Which is one of my gripes about the &quot;Feedesktop&quot; and it&#039;s corporate take over the user space.&nbsp; At the end of the day choice is good. Yesterday I compiled e16. Old but still maintained and up to date. It strikes me as a better alternative than Lumina. Likewise TDE they&#039;re friendly to patches and very complete and self contained. I know that Selk the Dragora maintainer has submited patches. Strikes me that it may be less work to support these Desktops collaboratively than always playing catch up with the main stream. </p><p>In regards to e16 a couple of things I noted. Obviously I suppose it was looking for pulseaudio and not finding it and while the default themes was very clean the rest that were bundled looked dated. I have it on other machines though and there are some very nice themes. Light at about 12MB in ps_mem.</p>]]></content>
			<author>
				<name><![CDATA[Oslek]]></name>
			</author>
			<updated>2023-03-11T09:01:39Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5842#p5842</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5841#p5841" />
			<content type="html"><![CDATA[<p>I&#039;d set super+a for the launcher and super+s to search windows.</p><p>Also, xbanish it&#039;s fine:</p><p><a href="https://github.com/jcs/xbanish">https://github.com/jcs/xbanish</a></p>]]></content>
			<author>
				<name><![CDATA[anthk]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=568</uri>
			</author>
			<updated>2023-03-10T10:49:13Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5841#p5841</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5840#p5840" />
			<content type="html"><![CDATA[<p>In cwm there are no &#039;workspaces&#039; iirc, but you can simulate workspaces by assigning windows to specific groups, and only showing a certain window group designated by you. This can be preconfigured in .cwmrc for apps you routinely use.</p><p>Tbh though I just alt-tab through windows because I am simple.</p><p>No problems encountered with herbe in cwm.</p><p>cwm comes with a built-in app launcher that lives at Alt-Shift-/ and this for me is the killer feature that lets me rapidly search for and execute apps I&#039;ve installed.</p><p>Apart from the open termal command I key-binded in .cwmrc, maximizing, shrinking, and snapping windows to a grid, that&#039;s all I use most of the time. Also, you can change all the keybinds if you want.</p><p>I successfully migrated my setup to another latop with a large screen and I didn&#039;t have to change anything.</p><p>Plus cwm is 18 years old, I like old software.</p><div class="quotebox"><cite>Oslek wrote:</cite><blockquote><p>Re Catwm<br />herbe intigration can be buggy.</p><p>I&#039;m no geek so no coder but I love window managers and hate bloat I have a very nice twm setup but it&#039;s needs set up for each and every machine to display correctly also it can be a bit prone to an odd freeze.</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[auanta]]></name>
			</author>
			<updated>2023-03-10T01:22:22Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5840#p5840</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5839#p5839" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>zapper wrote:</cite><blockquote><p>How does catwm and cwm compare to jwm on the load average for your systems? Very curious, but also wondering how you even set up cwm.</p><p>RTFM tells me almost nothing lol.</p><p>OpenBSD&#039;s one weakness is that documentation is lacking on some of that.</p></blockquote></div><p>I recall the manpage for cwm being rather complete. I remember looking at BSD forums for config examples. There are configuration guides on cwm out there. To get started just install cwm and put this in your .cwmrc:</p><div class="codebox"><pre><code># KEYBINDINGS:
# 4 = mod (windows key)
# S = shift
# C = control
# M = meta (alt)

# (optional) make space for termbar or your favorite status bar
#gap 18 0 0 0

bind-key XF86MonBrightnessUp    &quot;light -A 5&quot;
bind-key XF86MonBrightnessDown  &quot;light -U 5&quot;
bind-key CM-Left    window-snap-left
bind-key CM-Right    window-snap-right
bind-key CM-Up        window-snap-up
bind-key CM-Down    window-snap-down
bind-key MS-Right    window-htile
bind-key MS-Up        window-vtile
bind-key MS-Left    window-hmaximize
bind-key MS-Down    window-vmaximize
bind-key MS-i        &quot;iceweasel-uxp&quot;

command iceweasel-uxp    &quot;firejail --seccomp --noroot --disable-mnt iceweasel-uxp&quot;
command elinks &quot;st -e elinks&quot;
#command myscript &quot;st -n myscript -g  -i -c myscript -T myscript -e ~/path/to/myscript

autogroup 0 &quot;termbar&quot;
autogroup 1 &quot;st&quot;
autogroup 2 &quot;alsamixer&quot;
autogroup 3 &quot;mpv&quot;
autogroup 3 &quot;moc&quot;
autogroup 4 &quot;conky&quot;
autogroup 5 &quot;iceweasel, iceweasel-uxp&quot;
autogroup 5 &quot;elinks&quot;

# this says to do not draw borders around these
# e.g. ignore xclock
#ignore    &quot;myscript&quot;

# colors
color menubg black
color font white
color activeborder purple
#color inactive border gray
color selfont red
color urgencyborder red
color menufg black 

# window options 
# border width 2
# snap windows to edges at 1 pixels distance
snapdist 1

# turn on sticky group mode
# sticky yes

# Set default font for menus
#fontname &quot;sans-serif:pixelsize=14:bold&quot;
fontname &quot;dejavu sans mono:size=12&quot;</code></pre></div><p>Then put this in your .xinitrc</p><div class="codebox"><pre><code>[[ -f ~/.Xresources ]] &amp;&amp; xrdb -merge -I$HOME ~/.Xresources
exec cwm</code></pre></div><p>I think your confusion may be with the .xinitrc file and calling xinit automatically, I configured these things by hand. </p><p>When experimenting with cwm you can Ctrl-Alt-Shift-Q to quit cwm and go back to the basic shell. xinit to start cwm again. This avoids reboots.</p><p>Any questions, just ask</p>]]></content>
			<author>
				<name><![CDATA[auanta]]></name>
			</author>
			<updated>2023-03-10T00:58:07Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5839#p5839</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5838#p5838" />
			<content type="html"><![CDATA[<p>Re Catwm</p><p>I chose catwm after reading the thread in the arch forum. I realised that a chunk of the code was actually GPL&#039;d quite early on (20100630 was the earliest reference I came across) after moetunes and milomouse hacked on it. moetunes then went on the make dminiwm (basically a very close catwm fork) and snapwm a much more feature rich version.<br />Though he reverted to a lax license. There were a lot of derivatives built from catwm. monsterwm frankenwm etc that have since lost momentum. Mostly as ricers seem to have moved to sucklesses dwm.</p><p>dwm and dmenu are not my thing though I did like how wmii functioned ootb.</p><p><a href="https://bbs.archlinux.org/viewtopic.php?id=100215&amp;p=7">https://bbs.archlinux.org/viewtopic.php … 15&amp;p=7</a><br /><a href="https://github.com/moetunes/dminiwm/commits/master/ChangeLog">https://github.com/moetunes/dminiwm/com … /ChangeLog</a></p><p>The moetunes gpl&#039;d fork was kept alive here:<br /><a href="https://github.com/djmasde/catwm">https://github.com/djmasde/catwm</a> &gt;<br /><a href="https://github.com/djmasde/catwm/forks">https://github.com/djmasde/catwm/forks</a> &gt;<br /><a href="https://github.com/viyoriya/catwm">https://github.com/viyoriya/catwm</a></p><p>which is the version I&#039;m compiled from.</p><p>There are only 2 issues I&#039;d call bugs I&#039;ve come across in catwm.<br />1:the odd ghost window which I noticed moetunes fixed in dminiwm.<br />2:A bit buggy getting the window size correct with dual screens.</p><p>There was a bug noted somewhere about disabling cycling anti-clockwise but I found a fix in the arch thread and it&#039;s been fine cycling both cycling both clockwise and anti-clockwise for me.</p><p>My setup: base</p><p>Niggles:<br />Not having dbus means that normal notifiers that expect it won&#039;t work. A workspace number notifier would be nice. I know the solution is possible with mkfifo but I failed to make it work with herbe. I tend to know whats where and if I do open something on an occupied workspace I just tab it through until it maximizes, in short I gave up and used a system until I didn&#039;t need it.</p><p>fittstool only works at the top of the screen in the panel area as the open windows covers the activation area. It&#039;s a minor inconvenence as I just put my top 15 or so most commonly required action at the top and if I&#039;m going to launch something it usually goes on an empty workspace where it&#039;s not an issue anyway. iirc dminiwm fixes this. Interesingly enough xdotool works fine as a fittstool replacement in this regard but it expects some things that don&#039;t exist in catwm.</p><p>catwm is not and does not try to be fully EWMH or freedesktop complient.</p><p>herbe intigration can be buggy. I don&#039;t require it but it&#039;s usefull while learning new setting and I have to admit the &quot;bling&quot; is fun. I&#039;ve been using fittstool for years and it&#039;s very solid and I know what&#039;s in the hotspots. I&#039;m not a fast typer and it&#039;s as quick for me to mouse-down in the top right corner to launch pinix to access my system info than try and recal a keybind.</p><p>mc (and hence mcedit), xterm, pinit, htop, wavmon, weather (wttr), ncdu, xtrlock, zzz, are all setup in fittstool</p><p>In short I have a good .bashrc with well configured aliases and see no need for a panel.</p><p>My main keybinds are:</p><p>super (mod4) &quot;the windows key&quot;</p><p>I have a shocking memory so everything is setup for ease of use and easy logical recall.</p><p>super+Return: xterm (starting an xterm gives me time, date and location in the file system)<br />super+q: quit active window (close it)<br />super+x: execute run dialog (thats runner -r for me)<br />super+up-arrow: volume up<br />super+down-arrow: volume down<br />super+left-arrow: cycle to the workspace to the left<br />super+right-arrow: cycle to the workspace to the right<br />super+alt: cycle windows clockwise<br />super+ctrl: cycle windows anti-clockwise (not really needed by me as I rarely have more than 2/3 windows open on a workspace)<br />super+f: toggle maximize active window<br />super+m: send active window in stack to master<br />super+d: decrease master window size<br />super+i: increase master window size<br />super+number: switch to workspace number e.g: super+5 goes to workspace 5<br />super+shift+number: move active window to workspace number<br />super+v: toggle windows vertically<br />super+h: toggle windows horizontally (I have mine set in horizontally by default)<br />super+shift+Delete: exit out to console</p><p>There are more but I never/rarely use them. I did configure alt+letter (a to z) as application launcher but found I didn&#039;t use it so disabled it.</p><p>I&#039;m no geek so no coder but I love window managers and hate bloat and I&#039;ve tried around 40. I have a very nice twm setup but it&#039;s needs set up for each and every machine to display correctly also it can be a bit prone to an odd freeze. I very much doubt many are smaller and as usable as window managers as catwm ootb.</p><p>At the end of the day I&#039;m a copy-left freetard. I accept that I have to use open-source but prefer free-software so start from that position, copy-left &gt; lax &gt; permissive. I try and stay in the copy-left &amp; lax zones. It&#039;s my main worry about Hyperbola moving to Hyperbola-BSD.</p><p><a href="https://www.gnu.org/licenses/licenses.html#Evaluation">https://www.gnu.org/licenses/licenses.html#Evaluation</a></p><p>I little follow up on my catwm video. Why I don&#039;t use a panel.</p><p><a href="https://libre.video/videos/watch/6bcfb5f2-6fb9-4a7f-a225-458eb3846aee">https://libre.video/videos/watch/6bcfb5 … 8eb3846aee</a></p>]]></content>
			<author>
				<name><![CDATA[Oslek]]></name>
			</author>
			<updated>2023-03-09T21:35:38Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5838#p5838</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5825#p5825" />
			<content type="html"><![CDATA[<p>How does catwm and cwm compare to jwm on the load average for your systems? Very curious, but also wondering how you even set up cwm.</p><p>RTFM tells me almost nothing lol.</p><p>OpenBSD&#039;s one weakness is that documentation is lacking on some of that.</p>]]></content>
			<author>
				<name><![CDATA[zapper]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=117</uri>
			</author>
			<updated>2023-03-08T05:47:55Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5825#p5825</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5815#p5815" />
			<content type="html"><![CDATA[<p>I&#039;m running cwm, with iceweasel-uxp running my top&#039;s load average is between 0.20-0.30</p><p>Everything else is just scripts and coreutils basically</p><p>Bliss</p>]]></content>
			<author>
				<name><![CDATA[auanta]]></name>
			</author>
			<updated>2023-03-06T20:15:50Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5815#p5815</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5810#p5810" />
			<content type="html"><![CDATA[<p>Your video without Javascript, you can paste the referenced links into mpv/mplayer:</p><p><a href="https://simpleertube.esmailelbob.xyz/libre.video/videos/watch/c5064aa9-744f-4789-9e5e-3704aac36fee/?quality=480">https://simpleertube.esmailelbob.xyz/li … uality=480</a></p>]]></content>
			<author>
				<name><![CDATA[anthk]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=568</uri>
			</author>
			<updated>2023-03-06T10:54:51Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5810#p5810</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5803#p5803" />
			<content type="html"><![CDATA[<p>My catwm desktop<br /><a href="https://libre.video/videos/watch/c5064aa9-744f-4789-9e5e-3704aac36fee">https://libre.video/videos/watch/c5064a … 04aac36fee</a></p>]]></content>
			<author>
				<name><![CDATA[Oslek]]></name>
			</author>
			<updated>2023-03-05T00:16:52Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5803#p5803</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5703#p5703" />
			<content type="html"><![CDATA[<p>Luakit it&#039;s almost good with a hosts file and forcing/disabling hw acceleration depending on your iGPU chipset.</p><p>Also, the rc files for luakit allows you to disable unneeded things for a simple use such as the web inspector.</p><p>But without ZRAM and swap, my netbook cries over the high webkitgtk4 usage. Once I enable a compressed GB of RAM (and 4GB of swap as a failsafe), it runs mostly well.</p><p>Maybe I should try to build a custom PKGBUILD for mesa 22 and&nbsp; a compatible libdrm under a different name (mesa-backports and libdrm-packports) which provide mesa and libdrm and &quot;conflict&quot; with the former ones. <br />Because with that MESA I get GL 2.1 support.</p>]]></content>
			<author>
				<name><![CDATA[anthk]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=568</uri>
			</author>
			<updated>2023-02-03T13:55:09Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5703#p5703</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5701#p5701" />
			<content type="html"><![CDATA[<p>I use luakit because it is the only thing with reasonable support for mouseless operation.</p><p>All relevant addons for XUL browsers have disappeared (especially pentadactyl).</p><p>Netsurf and Dillo never tried to achieve anything in that direction.</p>]]></content>
			<author>
				<name><![CDATA[schilling.klaus]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=607</uri>
			</author>
			<updated>2023-02-02T15:57:50Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5701#p5701</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: What's the lightest desktop environment?]]></title>
			<link rel="alternate" href="https://forums.hyperbola.info/viewtopic.php?pid=5700#p5700" />
			<content type="html"><![CDATA[<p>Oh, the 6809 emulation guy it&#039;s the evilwm author. I remember editing some Vectrex fonts a few years ago so they could be readable on a smaller screen with a downscaled rendering.&nbsp; Now, on lightness, almost all WM&#039;s are close, unless you use a 486 with 32MB of RAM. What I&#039;m worried about it&#039;s using a web browser:&nbsp; - A custom dillo fork it&#039;s good and the lack of JS doesn&#039;t worry me, but it doesn&#039;t support Unicode fonts.&nbsp; - Netsurf it&#039;s fine but I hate the scrollbar on the bottom. Maybe the newest builds from Git fixed that.&nbsp; - Otter it&#039;s good but it leaks memory and it&#039;s crashy.&nbsp; - Iceweasel-UXP it&#039;s noticeabily slower than IceApe but it&#039;s far more stable&nbsp; - IceApe it&#039;s faster but it&#039;s crashy. Not as crashy as Otter.&nbsp; - Luakit it&#039;s good for a few windows (no more than 3), webkitgtk4 it&#039;s a memory monster. You need to use a hosts file (<a href="https://github.com/stevenblack/hosts">https://github.com/stevenblack/hosts</a>), append the contents of the hosts file into /etc/hosts.</p>]]></content>
			<author>
				<name><![CDATA[anthk]]></name>
				<uri>https://forums.hyperbola.info/profile.php?id=568</uri>
			</author>
			<updated>2023-02-02T14:02:04Z</updated>
			<id>https://forums.hyperbola.info/viewtopic.php?pid=5700#p5700</id>
		</entry>
</feed>
