<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[HyperForum — Desktop]]></title>
		<link>https://forums.hyperbola.info/index.php</link>
		<atom:link href="https://forums.hyperbola.info/extern.php?action=feed&amp;fid=91&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent topics at HyperForum.]]></description>
		<lastBuildDate>Wed, 05 Mar 2025 12:30:06 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[DE and windows theme panel conflict?]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1129&amp;action=new</link>
			<description><![CDATA[<p>When I was messing around with the Windows Theme option label of the Window Manager Setting window, I think I set off another conflicting panel. Now when I log into the DE session, the DE panel gets pushed to the top alignment by the Windows Theme bottom panel. I go, &quot;What, another DE or WM? I thought I didn&#039;t install and set a WM?&quot;. Anyways, I am going for a fix to this new panel. Its menu can cancel out both panels, which could be a steep scaled GUI experience. The conflict occurs on a Dell Dimension 4500S.</p><p>I hope someone out there can replicate this error so I won&#039;t look crazy.<br />Is there a solution to these conflicts? Maybe that is the reason why WM shells take the place of DE GUI? Of course, if CLI/TUI is a must, I will take a look at the offers.</p>]]></description>
			<author><![CDATA[null@example.com (Ribby)]]></author>
			<pubDate>Wed, 05 Mar 2025 12:30:06 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1129&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[solved] hide cursor]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1106&amp;action=new</link>
			<description><![CDATA[<p>I can&#039;t hide the cursor, for example the <strong>-Y</strong> option in <strong>feh</strong> doesn&#039;t work, I&#039;ve also tried using <strong>xbanish</strong> but the cursor still doesn&#039;t disappear. Is the same thing happening to you, or do I have some configuration that prevents me from hiding the cursor?</p>]]></description>
			<author><![CDATA[null@example.com (gnu)]]></author>
			<pubDate>Sun, 27 Oct 2024 13:18:16 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1106&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Hyperbola setup and user programs]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1066&amp;action=new</link>
			<description><![CDATA[<p>From<br /> &quot;Bringing my .cwmrc to Hyperbola&quot; thread:<br /></p><div class="quotebox"><cite>jim wrote:</cite><blockquote><p>As I understand it, you also decrypt disks or usb using the <br />terminal. </p><p>What do you think about scripts to automate this process? Can you write <br />complex scripts?</p></blockquote></div><p>I don&#039;t encrypt full disks as I don&#039;t see the usefulness to, putting a <br />password in BIOS is simpler if needed to protect the system itself at <br />boot, but even then you can&#039;t know that the disks haven&#039;t been removed <br />and executables changed unless you sign them or reinstall the whole <br />system. But a line in an init script that would decrypt some file using a password at <br />startup with aescrypt2 for example, and encrypt it at shutdown is a good way of <br />protecting privacy. </p><p>Regarding full usb encryption, use fscrypt: <br /><a href="https://wiki.archlinux.org/title/Fscrypt#ext4.">https://wiki.archlinux.org/title/Fscrypt#ext4.</a> <br />Compile and install fscryptctl: <br /><a href="https://github.com/google/fscryptctl/blob/master/README.md.">https://github.com/google/fscryptctl/bl … README.md.</a> <br />and follow the instructions <br />For auto_mounting, you can add a udev rule, for example (supposing you want to enter the password in dmenu): </p><p>(inspired by <br /><a href="https://stackoverflow.com/questions/45186643/auto-mount-usb-drive-from-udev-rules-and-shell-script">https://stackoverflow.com/questions/451 … ell-script</a>)</p><p>/lib/udev/rules.d/10-usb-decryption-automount.rules<br /></p><div class="codebox"><pre><code>// SPDX-License-Identifier: BSD-3-Clause
ACTION==&quot;add&quot;, KERNEL==&quot;sdb[0-9]&quot;, SUBSYSTEM==&quot;block&quot;, RUN+=&quot;auto-mount&quot;
ACTION==&quot;remove&quot;, KERNEL==&quot;sdb[0-9]&quot;, SUBSYSTEM==&quot;block&quot;, RUN+=&quot;auto-mount&quot;</code></pre></div><p>/usr/bin/auto-mount <br /></p><div class="codebox"><pre><code>// SPDX-License-Identifier: BSD-3-Clause
#!/bin/sh

Name=$(basename $0)
Logger=&quot;/usr/bin/logger -p local3.info -t $Name &quot;
Message=&quot;$* $DEVNAME $ACTION $ID_FS_LABEL&quot;
$Logger &lt;&lt;&lt; $Message

usb_add ()
{ Message=&quot;automounting  $DEVNAME $ID_FS_LABEL&quot;
  $Logger &lt;&lt;&lt; $Message
  /sbin/mount $DEVNAME /mnt &amp;&amp; $Logger &lt;&lt;&lt; &quot;mounted&quot; ||
 $Logger &lt;&lt;&lt; &quot;failed&quot;
  dmenu &lt; /dev/null | fscryptctl add_key /mnt
}

pico_remove ()
{ Message=&quot;umounting  $DEVNAME $ID_FS_LABEL&quot;
  $Logger &lt;&lt;&lt; $Message
  /sbin/umount -f /mnt &amp;&amp; $Logger &lt;&lt;&lt; &quot;umounted&quot; || $LOGGER &quot;failed&quot;
}

usb_$ACTION</code></pre></div><p>then: udevadm control --reload-rules &amp;&amp; udevadm trigger</p>]]></description>
			<author><![CDATA[null@example.com (benyouyou)]]></author>
			<pubDate>Fri, 07 Jun 2024 15:33:06 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1066&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Bringing my .cwmrc to Hyperbola]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=1041&amp;action=new</link>
			<description><![CDATA[<p>Bringing my .cwmrc to Hyperbola from OpenBSD.</p><div class="codebox"><pre><code># pacman -S xenocara xenocara-xinit xorg-xdm xterm xenocara-xconsole \
&gt; xf86-input-synaptics xorg-input-evdev xenocara-video-ati cwm</code></pre></div><p>You need either <strong>xenocara-xinit</strong> or <strong>xorg-xdm</strong>. For the later run: <strong># rc-update add xdm default</strong>.</p><p>For the touchpad and proper keyboard layout:<br /></p><div class="codebox"><pre><code># /etc/X11/xorg.conf.d/50-synaptics.conf

Section &quot;InputClass&quot;
        Identifier &quot;touchpad&quot;
        Driver &quot;synaptics&quot;
        MatchIsTouchpad &quot;on&quot;
                Option &quot;TapButton1&quot; &quot;1&quot;
                Option &quot;TapButton2&quot; &quot;2&quot;
                Option &quot;TapButton3&quot; &quot;3&quot;
                Option &quot;VertEdgeScroll&quot; &quot;on&quot;
                Option &quot;VertTwoFingerScroll&quot; &quot;on&quot;
                Option &quot;HorizEdgeScroll&quot; &quot;on&quot;
                Option &quot;HorizTwoFingerScroll&quot; &quot;on&quot;
                Option &quot;CircularScrolling&quot; &quot;on&quot;
                Option &quot;CircScrollTrigger&quot; &quot;2&quot;
                Option &quot;EmulateTwoFingerMinZ&quot; &quot;40&quot;
                Option &quot;EmulateTwoFingerMinW&quot; &quot;8&quot;
                Option &quot;CoastingSpeed&quot; &quot;0&quot;
EndSection</code></pre></div><div class="codebox"><pre><code># /etc/X11/xorg.conf.d/90-keyboard.conf

Section &quot;InputClass&quot;
        Identifier &quot;keyboard-gb&quot;
        MatchIsKeyboard &quot;on&quot;
        MatchDevicePath &quot;/dev/input/event*&quot;
        Driver &quot;evdev&quot;
        Option &quot;XkbLayout&quot; &quot;es&quot;
        Option &quot;XkbOptions&quot; &quot;ctrl:nocaps&quot;
EndSection</code></pre></div><p>The configs:<br /></p><div class="codebox"><pre><code># ~/.cwmrc

# Set default Xft(3) font
fontname &quot;monospace:size=10&quot;

# Turn on sticky-group mode
sticky yes

# Any entry here is shown in the application menu
command Iceweasel-UXP iceweasel-uxp
command XConsole xconsole

# Autogroup definitions
autogroup 1 &quot;xterm,XTerm&quot;

# Key bindings
unbind-key all
...</code></pre></div><div class="codebox"><pre><code># ~/.xsession

#!/bin/sh

LC_ALL=en_US.UTF-8
setxkbmap es -option ctrl:nocaps
xrdb -l ~/.Xresources
xsetroot -solid black

tint2 &amp;
cwm</code></pre></div><p>Also important:<br /></p><div class="codebox"><pre><code># pacman -S ttf-dejavu tint2 iceweasel-uxp picom</code></pre></div><p>Can&#039;t get picom to work at the moment. --experimental-backends start, however.</p><p>Time to either <strong>$ startx</strong> or <strong>$ doas rc-service xdm start</strong>.</p><p>Complementary screenshot: </p><p><span class="postimg"><img src="https://cdn.deskto.ps/images/721257036391120930.png" alt="https://cdn.deskto.ps/images/721257036391120930.png" /></span></p><p><a href="https://deskto.ps/u/stilla/d/t6shex">https://deskto.ps/u/stilla/d/t6shex</a></p>]]></description>
			<author><![CDATA[null@example.com (stilla)]]></author>
			<pubDate>Sun, 28 Apr 2024 21:30:32 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=1041&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[xinitrc missing from /etc/X11/xinit, bspwm doesn't start]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=954&amp;action=new</link>
			<description><![CDATA[<p>Hello, I&#039;m trying to install bspwm on my system, but it doesn&#039;t really work. I installed xenocara-xinit, put exec bspwm in ~/.xinitrc, but the main xinitrc is empty. When i try to start bspwm with just exec bspwm from the tty, it just logs me out with no error messages, if i try to start it with just bspwm i get the message &quot;The server closed connection: can&#039;t parse display string&quot;. I put my user in the video, wheel, audio, etc. groups, so that shouldn&#039;t be an issue. I think i also installed every xenocara dependency and package. If i try starting bspwm with slim, I get the error message &quot;Failed to execute login command&quot;. Xsession and Xsession.d are also not present in the /etc/X11 folder. No configs for bspwm are missing from ~/.config folder either, i tried loading the defaults and my own configuration too, with no change. I also installed lumina and the extra packages, because i thought that might grab some missing dependencies, but that doesn&#039;t start either. Using startx doesn&#039;t work too but I expected that if exec bspwm doesnt work. I also tried changing some things in /etc/slim.conf, like changing the login_cmd line from &quot;exec /bin/sh - ~/.xinitrc %session&quot; to &quot;exec /bin/sh -login /usr/share/slim/Xsession %session&quot;, no change with that either. I might just be dumb and missing something very basic, but I have no idea what it is.</p>]]></description>
			<author><![CDATA[null@example.com (radiatorman)]]></author>
			<pubDate>Sun, 17 Dec 2023 17:14:06 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=954&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Recommended programs after installing Hyperbola]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=943&amp;action=new</link>
			<description><![CDATA[<p>Hi all . I invite our community to create a recommended list of programs for future wikis that are needed after installing HyperbolaGNU. <br />So that the user can configure his system: surf the Internet, listen to music, watch videos, view photos, edit configuration files, compile programs, connect to the Internet, unzip files, etc.</p><br /><p>Let&#039;s get started) Everyone can add here a program that is important in their opinion.</p><p>Be sure to install opendoas, it&#039;s a replacement for sudo&nbsp; <a href="https://www.hyperbola.info/packages/core/i686/opendoas/">https://www.hyperbola.info/packages/core/i686/opendoas/</a></p><p>1. <strong>Browser:</strong>&nbsp; [ Badwolf ] , [ Iceweasel ] ,&nbsp; [ lynx -cli browser ]&quot;&nbsp; &nbsp;=&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/badwolf/">https://www.hyperbola.info/packages/extra/i686/badwolf/</a>&nbsp; &nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/iceweasel-uxp/">https://www.hyperbola.info/packages/ext … easel-uxp/</a>&nbsp; &nbsp;<a href="https://www.hyperbola.info/packages/extra/i686/lynx/">https://www.hyperbola.info/packages/extra/i686/lynx/</a> </p><p>2. <strong>Archivers:</strong>&nbsp; [ unar ] ,&nbsp; [ gzip ]&nbsp; =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/unar/">https://www.hyperbola.info/packages/extra/i686/unar/</a> <a href="https://www.hyperbola.info/packages/core/i686/gzip/">https://www.hyperbola.info/packages/core/i686/gzip/</a> </p><p>3. <strong>View photos:</strong>&nbsp; [ viewnior ] , [ feh ]&nbsp; =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/viewnior/">https://www.hyperbola.info/packages/ext … /viewnior/</a> <a href="https://www.hyperbola.info/packages/extra/i686/feh/">https://www.hyperbola.info/packages/extra/i686/feh/</a></p><p>4. <strong>Photo processing:</strong>&nbsp; [ gimp ]&nbsp; &nbsp;=&gt; <a href="https://www.hyperbola.info/packages/extra/i686/gimp/">https://www.hyperbola.info/packages/extra/i686/gimp/</a></p><p>5. <strong>View PDF:</strong>&nbsp; &nbsp;[ epdfview ] = &gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/epdfview/">https://www.hyperbola.info/packages/ext … /epdfview/</a></p><p>6. <strong>File manager:</strong>&nbsp; [ spacefm ] , [&nbsp; clifm -cli filemanager ]&nbsp; [ zzzfm ] =&gt; <a href="https://www.hyperbola.info/packages/extra/i686/spacefm/">https://www.hyperbola.info/packages/extra/i686/spacefm/</a>&nbsp; &nbsp;<a href="https://www.hyperbola.info/packages/extra/i686/zzzfm/">https://www.hyperbola.info/packages/extra/i686/zzzfm/</a>&nbsp; &nbsp; &nbsp;<a href="https://www.hyperbola.info/packages/extra/x86_64/clifm/">https://www.hyperbola.info/packages/extra/x86_64/clifm/</a></p><p>7. <strong>Viewing documents:</strong>&nbsp; [ libreoffice&nbsp; ]&nbsp; =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/libreoffice/">https://www.hyperbola.info/packages/ext … breoffice/</a></p><p>8.<strong> Security: </strong>&nbsp; [ firejail-lts ] , [ wireguard-tools ], [ firetools ]&nbsp; [ nftables ] [ dnscrypt-proxy ] =&gt; <a href="https://www.hyperbola.info/packages/extra/x86_64/firejail-lts/">https://www.hyperbola.info/packages/ext … ejail-lts/</a> <a href="https://www.hyperbola.info/packages/extra/x86_64/firetools/">https://www.hyperbola.info/packages/ext … firetools/</a> <a href="https://www.hyperbola.info/packages/extra/x86_64/wireguard-tools/">https://www.hyperbola.info/packages/ext … ard-tools/</a> <a href="https://www.hyperbola.info/packages/core/i686/nftables/">https://www.hyperbola.info/packages/core/i686/nftables/</a> <a href="https://www.hyperbola.info/packages/extra/x86_64/dnscrypt-proxy/">https://www.hyperbola.info/packages/ext … ypt-proxy/</a></p><p>9. <strong>Anonymity:</strong>&nbsp; [ tor ] , [ i2pd ],&nbsp; [ onioncat ] =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/tor/">https://www.hyperbola.info/packages/extra/i686/tor/</a> <a href="https://www.hyperbola.info/packages/extra/i686/i2pd/">https://www.hyperbola.info/packages/extra/i686/i2pd/</a> <a href="https://www.hyperbola.info/packages/extra/i686/onioncat/">https://www.hyperbola.info/packages/ext … /onioncat/</a></p><p>10. <strong>Communication:</strong>&nbsp; [ utox -TOX ]&nbsp; [ profanity -XMPP ]&nbsp; [ weechat-IRC ] =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/utox/">https://www.hyperbola.info/packages/extra/i686/utox/</a>&nbsp; <a href="https://www.hyperbola.info/packages/extra/x86_64/profanity/">https://www.hyperbola.info/packages/ext … profanity/</a>&nbsp; &nbsp;<a href="https://www.hyperbola.info/packages/extra/i686/weechat/">https://www.hyperbola.info/packages/extra/i686/weechat/</a></p><p>11. <strong>Working with disks:</strong>&nbsp; [ gparted ], [ parted ] [ baobab ]=&gt; <a href="https://www.hyperbola.info/packages/extra/i686/gparted/">https://www.hyperbola.info/packages/extra/i686/gparted/</a> <a href="https://www.hyperbola.info/packages/extra/i686/parted/">https://www.hyperbola.info/packages/extra/i686/parted/</a> <a href="https://www.hyperbola.info/packages/extra/x86_64/baobab/">https://www.hyperbola.info/packages/ext … 64/baobab/</a></p><p>12. <strong>Graphical user interface for the GnuPG (GNU Privacy Guard) :</strong>&nbsp; [ gpa ]&nbsp; =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/gpa/.">https://www.hyperbola.info/packages/extra/i686/gpa/.</a></p><p>13. <strong>Torrent client:</strong>&nbsp; [ transmission-gtk ] =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/x86_64/transmission-gtk/">https://www.hyperbola.info/packages/ext … ssion-gtk/</a> </p><p>14. <strong>Searching for files in the system:</strong>&nbsp; [ mlocate ] =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/core/i686/mlocate/">https://www.hyperbola.info/packages/core/i686/mlocate/</a></p><p>15. <strong>SSH&nbsp; </strong> = &gt;&nbsp; <a href="https://www.hyperbola.info/packages/core/i686/openssh/">https://www.hyperbola.info/packages/core/i686/openssh/</a></p><p>16. <strong>Screen recording:</strong>&nbsp; [ peek -GIF,MPEG Recorder ], [ simplescreenrecorder ]&nbsp; =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/peek/">https://www.hyperbola.info/packages/extra/i686/peek/</a> <a href="https://www.hyperbola.info/packages/extra/x86_64/simplescreenrecorder/">https://www.hyperbola.info/packages/ext … nrecorder/</a></p><p>17. <strong>Screenshot:</strong>&nbsp; &nbsp;[ scrot ] =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/scrot/">https://www.hyperbola.info/packages/extra/i686/scrot/</a></p><p>18. <strong> Text editor:</strong>&nbsp; [ neovim ] , [ l3afpad ] , [ featherpad ] =&gt; <a href="https://www.hyperbola.info/packages/extra/i686/neovim/">https://www.hyperbola.info/packages/extra/i686/neovim/</a>&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/l3afpad/">https://www.hyperbola.info/packages/extra/i686/l3afpad/</a>&nbsp; &nbsp;<a href="https://www.hyperbola.info/packages/extra/i686/featherpad/">https://www.hyperbola.info/packages/ext … eatherpad/</a></p><p>19. <strong>Watch video:</strong>&nbsp; [ mpv ]&nbsp; [ vlc ] =&gt; <a href="https://www.hyperbola.info/packages/extra/i686/mpv/">https://www.hyperbola.info/packages/extra/i686/mpv/</a> <a href="https://www.hyperbola.info/packages/?sort=&amp;q=vlc&amp;maintainer=&amp;flagged=">https://www.hyperbola.info/packages/?so … p;flagged=</a></p><p>20 <strong> E-mail client:</strong>&nbsp; [ claws-mail ]&nbsp; =&gt; <a href="https://www.hyperbola.info/packages/extra/i686/claws-mail/">https://www.hyperbola.info/packages/ext … laws-mail/</a></p><p>21. <strong>System backup :</strong>&nbsp; [ grsync ] =&gt; <a href="https://www.hyperbola.info/packages/extra/i686/grsync/">https://www.hyperbola.info/packages/extra/i686/grsync/</a></p><p>22.&nbsp; <strong>Creating virtual machines:</strong>&nbsp; &nbsp;[ qemu ] , [ qtemu ] =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/qemu/">https://www.hyperbola.info/packages/extra/i686/qemu/</a> <a href="https://www.hyperbola.info/packages/extra/x86_64/qtemu/">https://www.hyperbola.info/packages/extra/x86_64/qtemu/</a><br />&nbsp; <br />23. <strong>Password Manager:</strong>&nbsp; [ keepassx ] =&gt; <a href="https://www.hyperbola.info/packages/extra/x86_64/keepassx/">https://www.hyperbola.info/packages/ext … /keepassx/</a></p><p>24.<strong> Antivirus:</strong>&nbsp; [ clamav ] =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/clamav/">https://www.hyperbola.info/packages/extra/i686/clamav/</a></p><p>25. <strong>Calculator:</strong>&nbsp; &nbsp;[ galculator ]&nbsp; =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/galculator/">https://www.hyperbola.info/packages/ext … alculator/</a></p><p>26. <strong>Process monitoring:</strong>&nbsp; [ htop ]&nbsp; [ lxtask GUI ]&nbsp; =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/htop/">https://www.hyperbola.info/packages/extra/i686/htop/</a>&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/lxtask/">https://www.hyperbola.info/packages/extra/i686/lxtask/</a></p><p>27. <strong>Video Converter:</strong>&nbsp; &nbsp;[ ffmpeg ]&nbsp; =&gt; <a href="https://www.hyperbola.info/packages/extra/i686/ffmpeg/">https://www.hyperbola.info/packages/extra/i686/ffmpeg/</a></p><p>28. <strong>RSS and Atom feeds: </strong>&nbsp; [ tauthon-feedparser ]&nbsp; [ snownews ]&nbsp; =&gt; <a href="https://www.hyperbola.info/packages/extra/any/tauthon-feedparser/">https://www.hyperbola.info/packages/ext … eedparser/</a><br /><a href="https://www.hyperbola.info/packages/?sort=&amp;q=snownews&amp;maintainer=&amp;flagged=">https://www.hyperbola.info/packages/?so … p;flagged=</a></p><p>29. <strong>WI-FI setting:</strong>&nbsp; [ iw ] , [ wpa_supplicant&nbsp; ]&nbsp; [ net-tools ]&nbsp; <a href="https://www.hyperbola.info/packages/core/i686/iw/">https://www.hyperbola.info/packages/core/i686/iw/</a> <a href="https://www.hyperbola.info/packages/core/i686/net-tools/">https://www.hyperbola.info/packages/cor … net-tools/</a> <a href="https://www.hyperbola.info/packages/core/i686/wpa_supplicant/">https://www.hyperbola.info/packages/cor … upplicant/</a></p><p>30. <strong>Traffic analysis and monitor</strong> [ tcpdump ] [ wireshark ]&nbsp; <a href="https://www.hyperbola.info/packages/?sort=&amp;q=tcpdump&amp;maintainer=&amp;flagged=">https://www.hyperbola.info/packages/?so … p;flagged=</a> <a href="https://www.hyperbola.info/packages/extra/x86_64/wireshark-qt/">https://www.hyperbola.info/packages/ext … eshark-qt/</a></p><p>31. <strong>Shell</strong>&nbsp; =&gt;&nbsp; [ fish ]&nbsp; &nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/fish/">https://www.hyperbola.info/packages/extra/i686/fish/</a> </p><p>32. <strong> Graphic menu</strong> = [ Rofi&nbsp; ] =&gt; <a href="https://www.hyperbola.info/packages/extra/x86_64/rofi/">https://www.hyperbola.info/packages/extra/x86_64/rofi/</a></p><p>33. <strong>Audio book player </strong>&nbsp; [ Cozy ] =&gt;&nbsp; <a href="https://www.hyperbola.info/packages/extra/i686/cozy-audiobooks/">https://www.hyperbola.info/packages/ext … udiobooks/</a></p><p>34. <strong>Monitor configuration tool</strong> [ lxrandr ]&nbsp; =&gt; <a href="https://www.hyperbola.info/packages/extra/i686/lxrandr/">https://www.hyperbola.info/packages/extra/i686/lxrandr/</a></p><p>35. <strong> Console music player</strong>&nbsp; [ cmus ]&nbsp; &nbsp;=&gt; <a href="https://www.hyperbola.info/packages/extra/x86_64/cmus/">https://www.hyperbola.info/packages/extra/x86_64/cmus/</a></p><p>36. <strong>Radio</strong>&nbsp; &nbsp;No radio..</p><p>37. <strong>USB Firewall</strong>&nbsp; &nbsp;No</p><br /><p>&nbsp; </p><p>Unfortunately, I didn’t find a program for connecting a computer and a phone....</p>]]></description>
			<author><![CDATA[null@example.com (jim)]]></author>
			<pubDate>Tue, 05 Dec 2023 15:54:26 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=943&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Need help fixing (creating) a script for Dwmblocks]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=932&amp;action=new</link>
			<description><![CDATA[<p>Hi all .</p><p>Please tell me how to correctly connect the scripts (each of them works correctly, attached below)<br />so that I have one script that shows this information in the bar:</p><br /><div class="codebox"><pre><code>[ 60%  192.168.0.1   ]</code></pre></div><p> # Shows wifi  and percent strength as well as local ip and vpn is not active </p><div class="codebox"><pre><code>[  192.168.0.1   ]</code></pre></div><p> # Same thing but with ethernet</p><div class="codebox"><pre><code>[ 60%  10.10.0.1   ]</code></pre></div><p> # Shows wifi and percent strength, as well as public ip and vpn is active </p><div class="codebox"><pre><code> [  192.168.0.1  ]</code></pre></div><p>&nbsp; # Same thing but with ethernet</p><div class="codebox"><pre><code>[睊  ]</code></pre></div><p>&nbsp; # When there is no wifi or ethernet connection, the bar should display these icons.</p><br /><p> I hope the icons are displayed correctly. I used &quot;awesome&quot; icons </p><p>&nbsp; </p><br /><p>ip_local<br />#=============#</p><div class="codebox"><pre><code>ip=&quot;$(ip a | grep .255 | grep -v wlp | cut -d&#039; &#039; -f6 | sed &#039;s/\/24//&#039;)&quot;

echo $ip</code></pre></div><br /><p>ip_public<br />#=============#</p><div class="codebox"><pre><code>#PREFIX=&#039; &#039;

get_pub_ip()
{
#    echo &quot;$PREFIX$(curl -s ifconfig.co)&quot;
echo &quot;$PREFIX$(wget -qO - ident.me)&quot;
}

get_pub_ip</code></pre></div><br /><br /><p>network_status<br />#=============#</p><div class="codebox"><pre><code>network() {
wire=&quot;$(ip a | grep &#039;eth0\|enp&#039; | grep inet | wc -l)&quot;
wifi=&quot;$(ip a | grep wl  | grep inet | wc -l)&quot;

if [ $wire = 1 ]; then
    echo &quot; &quot;
elif [ $wifi = 1 ]; then
    echo &quot; &quot;
else
    echo &quot;睊&quot;
fi
}

echo &quot;$(network)&quot;</code></pre></div><br /><br /><p>wifi_signal_indicator<br />#=====================#</p><div class="codebox"><pre><code># Show wifi   and percent strength or   if none.
# Show   if connected to ethernet or   if none.
# Show   if a vpn connection is active

case $BLOCK_BUTTON in
        1) &quot;$TERMINAL&quot; -e nmtui; pkill -RTMIN+4 dwmblocks ;;
        3) notify-send &quot;🌐 Internet module&quot; &quot;\- Click to connect
睊: wifi disabled
 : no wifi connection
 : wifi connection with quality
 : no ethernet
 : ethernet working
 : vpn is active
&quot; ;;
        6) &quot;$TERMINAL&quot; -e &quot;$EDITOR&quot; &quot;$0&quot; ;;
esac

if grep -xq &#039;up&#039; /sys/class/net/w*/operstate 2&gt;/dev/null ; then
        wifiicon=&quot;$(awk &#039;/^\s*w/ { print &quot; &quot;, int($3 * 100 / 70) &quot;% &quot; }&#039; /proc/net/wireless)&quot;
elif grep -xq &#039;down&#039; /sys/class/net/w*/operstate 2&gt;/dev/null ; then
        grep -xq &#039;0x1003&#039; /sys/class/net/w*/flags &amp;&amp; wifiicon=&quot;睊&quot;|| wifiicon=&quot;睊&quot;
fi

printf &quot;[%s%s%s]\n&quot; &quot;$wifiicon&quot; &quot;$(sed &quot;s/down/  /;s/up/  /&quot; /sys/class/net/e*/operstate 2&gt;/dev/null)&quot; &quot;$(sed &quot;s/.*/  /&quot; /sys/class/net/tun*/operstate 2&gt;/dev/null)&quot;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (jim)]]></author>
			<pubDate>Tue, 21 Nov 2023 09:15:42 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=932&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Setting up and customizing DWM and DWMblocks.]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=915&amp;action=new</link>
			<description><![CDATA[<p>Hi all . I would like to touch on the topic of setting up DWM and DWMblocks.</p><p>I think HyperbolaBSD and DWM are a very good example of a minimalistic dynamic window manager for X and a free distro with good memory usage, which is important for laptops like the T200 or T400 that have Libreboot installed.</p><p>As the practice of using DWMblocks shows, the use of a large number of indicators on the panel</p><p>not the best solution (screenshot below from luke Smith) so users choose the number of indicators based on their preferences.</p><p>Below is my list of scripts, which I think will be useful to everyone; everyone will choose their own script to install at their own discretion.</p><p>I suggest DWMblocks users post links to scripts or scripts so that other users who want to install DWMblocks</p><p>could come here and find them.</p><p>I’m also attaching a good Heckley example in terms of setting up a bar.</p><p>Basic:<br />=============</p><p>1. Date and time.</p><p>2. Brightness adjustment</p><p>3. Sound adjustment (turn on | turn off | mute)</p><p>4. CPU temperature</p><p>5. USB mounting</p><p>6. Memory usage.</p><p>7. Change language</p><p>8 Battery</p><p>9. Network speed</p><p>10.VPN | W-FI&nbsp; | Ethernet | ip</p><p>Additionally:<br />===============</p><p>1. Weather</p><p>2. Biitcoin rate</p><p>3. Number of installed packages</p><p>4. Amount of free disk space.</p><p>5. Clickable statusbar</p><p>6. Checking mail</p><p>7. Music player (display: play, pause, forward, backward)</p><p>8. Torrent</p><p>9.Bluetooth</p><p>10. RSS</p><p>11. Tox client | xmpp client</p><p><a href="https://send.vis.ee/download/409fb44f9e442d44/#OQoSRUHondrKkZ2DCJ5kPA">https://send.vis.ee/download/409fb44f9e … kZ2DCJ5kPA</a></p><p>and </p><p><a href="https://send.vis.ee/download/ed45636c4369bc5e/#MLfJt15KSLKuFlQiX1nbmg">https://send.vis.ee/download/ed45636c43 … FlQiX1nbmg</a></p><br /><p>I don&#039;t know how to attach a file here, I had to upload...</p>]]></description>
			<author><![CDATA[null@example.com (jim)]]></author>
			<pubDate>Wed, 18 Oct 2023 12:34:17 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=915&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Cant install any DE]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=913&amp;action=new</link>
			<description><![CDATA[<p>Hello everyone! Much thx for throgh!<br />Now i dont have problem with install Hyperbola! But i can install any DE</p><p>Im trying install KDE by manual <a href="https://www.ubuntubuzz.com/2021/11/how-to-install-hyperbola-kde-on-virtual-machine.html">https://www.ubuntubuzz.com/2021/11/how- … chine.html</a> <br />But i want to install KDE plasma, but i have errors. </p><p>Or Lumina by this video <a href="https://www.youtube.com/watch?v=MFYtfvxauhM">https://www.youtube.com/watch?v=MFYtfvxauhM</a> </p><p>or xcfe<br /><a href="https://youtu.be/l3dR-aGUVF8?si=5dwwFm6PsRod205j">https://youtu.be/l3dR-aGUVF8?si=5dwwFm6PsRod205j</a></p><p>Sorry for imgur <br /><a href="https://imgur.com/a/OeRdHuc">https://imgur.com/a/OeRdHuc</a></p><p>Help me please!</p>]]></description>
			<author><![CDATA[null@example.com (fuknitimla@gufum.com)]]></author>
			<pubDate>Wed, 11 Oct 2023 14:00:16 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=913&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[What web browser do you use?]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=910&amp;action=new</link>
			<description><![CDATA[<p>I admit that it is getting harder to function on the desktop.<br />More and more pages do not want to display.<br />I use iceweasel but it&#039;s hard, Iceape is practically the same. (e.g. recently Protonmail has stopped working)<br />Badwolf displays more pages, but it lacks a lot of functionality.</p><p>So what browser do you use?</p>]]></description>
			<author><![CDATA[null@example.com (maran)]]></author>
			<pubDate>Sun, 08 Oct 2023 06:26:05 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=910&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[The end of version 0.3 repo?]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=897&amp;action=new</link>
			<description><![CDATA[<p>Anyways, thanks to the developers for a great distro. </p><p>I was wasting too much time trying to configure 0.4, so I downgraded to 0.3. I didn&#039;t have the opportunity to learn to self-host 0.3 repo. Looks like I ran out of time.</p>]]></description>
			<author><![CDATA[null@example.com (Mesh Malachi)]]></author>
			<pubDate>Thu, 14 Sep 2023 00:43:43 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=897&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Seat management in Hyperbola.]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=895&amp;action=new</link>
			<description><![CDATA[<p>Greetings to the Hyperbola community.</p><p>Since elogind (and thus systemd-logind) are not part of Hyperbola i wonder if the functionality of seat management is offered in Hyperbola.</p><p>By &#039;seat management functionality&#039; i mean the ability to offer multiseat and multisession (with user switching) use cases and even&nbsp; enhance security&nbsp; in&nbsp; in a single seat - single session setup by offering a different way to start a display server rather than as root , or by standard&nbsp; linux user groups.</p>]]></description>
			<author><![CDATA[null@example.com (chomwitt)]]></author>
			<pubDate>Sat, 02 Sep 2023 18:53:26 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=895&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[xscreensaver-demo: locking not enabled.]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=848&amp;action=new</link>
			<description><![CDATA[<p>My screen lock is not working. The screensaver works normally, but the screen does not lock. I get the title message when trying to lock manually. Deskop lumina.<br />I installed xlock and it works, but I don&#039;t know where to replace what. Does anyone have an idea?</p>]]></description>
			<author><![CDATA[null@example.com (maran)]]></author>
			<pubDate>Wed, 03 May 2023 15:24:59 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=848&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Xorg failure!]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=835&amp;action=new</link>
			<description><![CDATA[<p>Hello,</p><p>Can anyone help me with this? When I run the <strong>startx </strong>command, it generates that Xorg output, failing to enter the desktop environment, </p><br /><p><a href="https://postimg.cc/BLWmPSmg"><span class="postimg"><img src="https://i.postimg.cc/sXxq81St/Xorg.png" alt="https://i.postimg.cc/sXxq81St/Xorg.png" /></span></a></p>]]></description>
			<author><![CDATA[null@example.com (Alfo)]]></author>
			<pubDate>Thu, 06 Apr 2023 16:49:41 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=835&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Is there a compositing window manager available on Hyperbola?]]></title>
			<link>https://forums.hyperbola.info/viewtopic.php?id=807&amp;action=new</link>
			<description><![CDATA[<p>Something like Compiz that supports effects like airplane (the window folds and then flies away when minimizing it), magic lamp and desktop cube?<br />Admittedly, I&#039;m usually fed up with these effects after a few weeks/months but I do like using them occasionally. I assume such a window manager might not align with Hyperbola&#039;s minimalistic goals but some of the effects like magnifying text should be useful regardless.</p>]]></description>
			<author><![CDATA[null@example.com (aloniv)]]></author>
			<pubDate>Sat, 28 Jan 2023 08:52:15 +0000</pubDate>
			<guid>https://forums.hyperbola.info/viewtopic.php?id=807&amp;action=new</guid>
		</item>
	</channel>
</rss>
