<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;fid=3&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Desktop and Multimedia]]></title>
		<link>https://dev1galaxy.org/index.php</link>
		<description><![CDATA[The most recent topics at Dev1 Galaxy Forum.]]></description>
		<lastBuildDate>Sun, 07 Jun 2026 23:16:07 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[mythTv - compatibility devuan]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7805&amp;action=new</link>
			<description><![CDATA[<p>260607<br />I have successfully compiled MythTV .deb packages on Devuan and have run<br /> mythfrontend for a couple of weeks with no issues. I have not installed <br /> a MythTV backend, and have no intentions to do so at this time.</p><p>Below is my experience. Any errors/omissions are solely mine. What, if<br /> anything one does with this information is on them. I do everything from a<br /> terminal.</p><p>A second experiment is listed under &#039;SYSTEMD&#039; below. Other than some add-on<br /> expected breakages, other issues are unknown. With the listed changes, the<br /> .deb packages were compiled, but not installed by me. I make absolutely no<br /> guarantee as to what might happen with your machine if you try this <br /> second experiment (or the first experiment for that matter).</p><p>Suggest a backup be made before proceeding. Have another means of booting your<br /> computer should something go wrong. Try not to do this on a production<br /> computer.<br />...</p><p>Environment: Devuan Excalibur with only the default repositories enabled and<br /> used. Work was done within the XFCE environment.</p><p>Instructions for compiling MythTV on Debian from mythtv.org are assumed, and<br />only changes I made are noted here.<br /><a href="https://wiki.mythtv.org/wiki/Installing_MythTV_on_Debian" rel="nofollow">https://wiki.mythtv.org/wiki/Installing … _on_Debian</a><br />last edited &quot;3 May 2026&quot;</p><p>Problem: error below returned and compile halted.<br /> conflict between libsystemd0 and ...elogin...</p><p>I ran:</p><div class="codebox"><pre><code>`DEBIAN_SUFFIX=&#039;devuan&#039; ./build-debs.sh fixes/36`</code></pre></div><p>&#160; &#160;Note: this will include &#039;devuan&#039; in the package names. I suggest adding your<br />&#160; &#160;initials as well (Ex. devuanABC).</p><p>build-debs.sh runs `dpkg-checkbuilddeps` against debian/control. A &#039;zero&#039;<br /> return indicates all dependencies are met. We can run the above manually from<br /> the directory we executed `build-debs.sh`</p><div class="codebox"><pre><code>dpkg-checkbuilddeps</code></pre></div><p>dpkg-checkbuilddeps: error: unmet build dependencies: build-essential:native ccache default-libmysqlclient-dev | libmysqlclient-dev <br />...</p><p>For me, lower down in this list is &#039;libsystemd-dev&#039;. I manually installed<br /> files listed above as user &#039;root&#039; or with `sudo` in several steps until <br /> libsystemd-dev was about the only unmet dependency left. <br />Note that the &#039;|&#039; in the output means to install either the .deb left of<br /> the &#039;|&#039; or the .deb package right of &#039;|&#039;</p><p>I made a list of installed .deb packages to help with this task.</p><div class="codebox"><pre><code>dpkg-query -l &gt; myinstalled.debs.txt</code></pre></div><p>I can for instance run: `grep libmysqlclient myinstalled.debs.txt`<br />Note the &#039;-dev&#039; is omitted in the search.</p><p>For &#039;-dev&#039; dependencies needed, this might tell you which &#039;-dev&#039; packages you<br /> need. If nothing is returned, you can try to install both, and `apt` will<br /> complain about one .deb not being found. Remove that .deb package from your<br /> &#039;apt install&#039; command and try again. This is the main reason I install<br /> dependencies slowly and resolve libsystemd-dev last; it avoids confusion.</p><p>I ran:</p><div class="codebox"><pre><code>apt install libsystemd-dev</code></pre></div><p>...<br />Installing:<br />&#160; libsystemd-dev</p><p>Installing dependencies:<br />&#160; dummy-logind&#160; libcap-dev&#160; libsystemd0</p><p>REMOVING:<br />&#160; desktop-base&#160; libelogind-compat&#160; libpam-elogind&#160; task-desktop&#160; task-xfce-desktop</p><p>preceeded by over one hundred packages that were &#039;no longer required&#039;. Note that<br /> *desktop* files are minimal .deb packages that install other .deb packages.<br />Removing, for instance, task-xfce-desktop does not delete the XFCE desktop.</p><p>Note the .deb packages listed below &#039;Installing:&#039;, &#039;Installing dependencies:&#039;, and<br /> &#039;REMOVING:&#039; as these changes will be later reversed.</p><p>I accepted install of libsystemd-dev. Do not log out or reboot once<br /> libsystemd-dev is installed.</p><p>I ran `dpkg-checkbuilddeps` until its only output was a prompt return.</p><p>Now we are ready to retry the ./build-debs.sh command (See above).<br />This command successfully created .deb packages in the packaging/deb/<br /> directory.</p><p>Follow the MythTV instructions for creating a repository listing and install<br /> you desired packages. Note MythTV urges ...mythtv.list should be removed<br /> once the packages are installed.</p><p>Reverse the changes we made to allow MythTV to compile. In my case:</p><div class="codebox"><pre><code>apt install desktop-base  libelogind-compat  libpam-elogind  task-desktop \
 task-xfce-desktop</code></pre></div><p>REMOVING:<br />&#160; dummy-logind&#160; libsystemd-dev&#160; libsystemd0</p><p>I accepted this change, to revert changes to the computer made earlier.<br />-----</p><p>I ran:</p><div class="codebox"><pre><code>apt install mythtv-frontend</code></pre></div><p>(my MythTV backend runs on a systemd enabled operating system at this time).</p><p>When I first ran `mythfrontend`, it complained that the user did not have<br /> &#039;mythtv&#039; in the user&#039;s groups listing. Following the prompting of the <br /> pop-up window, this was attempted, but failed. The complaint was not <br /> being able to run `systemctl daemon-reload`. I had to manually add &#039;mythtv&#039;<br /> to the users group (Ex. usermod -a -G mythtv myuser # subbing for myuser), <br /> then log out for the change to be committed.</p><p>Done!<br />-----<br />SYSTEMD<br />I ran:</p><div class="codebox"><pre><code>grep systemd packaging/deb/mythtv/mythtv/configure</code></pre></div><p>and it listed:<br />--disable-systemd_notify <br />--disable-systemd_journal</p><p>as possible inputs to the configure script. These can be added to<br />&#039;packaging/deb/debian/rules&#039; before beginning the compile (backup the<br />&#039;rules&#039; file before changing).</p><p>Searching the &#039;control&#039; file, there are two mentions of systemd:<br />libsystemd-dev&#160; is within the base &#039;Build-Depends:&#039;<br />python3-systemd is within &#039;Package: libmyth-python&#039;<br /> &quot;This package contains files needed for some python MythTV add-ons.&quot;</p><p>So can we not build the libmyth-python package and accept loss of some MythTV<br /> add-ons? Can we simply remove &#039;libsystemd-dev&#039; as a dependency?<br /> &#039;libmyth-python&#039; is listed as a dependency of &#039;Package: mythtv-frontend&#039;<br />Lets try it!!</p><p>Backup the control file. Within the &#039;control&#039; file:<br />Delete the &#039;libsystemd-dev&#039; dependency<br />Delete the &#039;Package: libmyth-python&#039; section (we have made a backup!)<br />Delete &#039;libmyth-python&#039; dependency within &#039;Package: mythtv-frontend&#039;<br /> and &#039;Package: mythtv-backend&#039;</p><p>Run `build-debs.sh` as indicated above</p><p>The compile ran to completion and created .deb packages. As expected,<br />a &#039;libmyth-python&#039; .deb package was not created. I have not installed this<br /> compile, and will not install at this time. </p><p>-----</p><p>MythTV seems tied to systemd (at least weakly). I intent to file a feature<br /> request to add a &#039;--disable-systemd&#039; to the `configure` script and see if the<br /> MythTV developers deem this something worth their time to pursue.</p><p>If the feature is accepted, I will test and report back on this post.</p>]]></description>
			<author><![CDATA[dummy@example.com (royboy626)]]></author>
			<pubDate>Sun, 07 Jun 2026 23:16:07 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7805&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[LXQt focus on existing windows on app selection]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=8028&amp;action=new</link>
			<description><![CDATA[<p>Hi, I&#039;m using LXQt, and when I select an application in the &quot;start menu&quot;, it opens a new window, even if that app is already open. Can I tell it to instead change focus to that app?</p>]]></description>
			<author><![CDATA[dummy@example.com (safari)]]></author>
			<pubDate>Sun, 07 Jun 2026 16:34:46 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=8028&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Zoitechat now in Backports]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=8019&amp;action=new</link>
			<description><![CDATA[<p>Hey all Zoitechat is now in Backports!<br /><a href="https://pkginfo.devuan.org/cgi-bin/policy-query.html?c=package&amp;q=zoitechat&amp;x=submit&amp;eXtra=222.154.61.250" rel="nofollow">https://pkginfo.devuan.org/cgi-bin/poli … 154.61.250</a></p>]]></description>
			<author><![CDATA[dummy@example.com (ruenoak)]]></author>
			<pubDate>Wed, 03 Jun 2026 07:51:44 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=8019&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Fun and games with UPnP servers on Arm64 Raspberry Pi]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7929&amp;action=new</link>
			<description><![CDATA[<p>3 weeks of faffing about later...<br />Jellyfin likes multi-CD albums to be inside one directory, not a directory for each disc.<br />So Tangerine Dream The Virgin Years is handled best by Jellyfin with all of the tracks inside the&#160; &#039;Virgin Years&#039; Directory and NOT &#039;Virgin years Disc1&#039; etc.</p><p>ALL discs are found as far as I can tell but not all Artists.<br />So &#039;We Saw A Bozo Under The Sea&#039; is there but does not appear under Zoot Horn Rollo in Artists. No Artist appears after Terry Riley with &#039;In C&#039;.</p><p>I took to working on just Tangerine Dream until I got it the way I wanted it - namely as the 5 albums Phaedra Cyclone Rubycon Ricochet Stratosfear. I used MusicBrainz Picard to change the album from The Virgin Years to Phaedra etc. I did it on my MacBook Pro running Devuan Ceres because it is a lot faster than the Kunbus with its little Raspberry Pi! <br />Once I know everything is as it should be the USB drive will get transferred to the Kunbus, and Plan A is to copy the Jellyfin databases over to the Kunbus rather than do a slow re-scan.</p><p>I did a full backup of all the audio files and then formatted the USB drive to ext4. I&#039;m working alphabetically backwards as I load up the USB drive so I can spot exactly where things go wrong and fix it. Zoot Horn Rollo is there!</p>]]></description>
			<author><![CDATA[dummy@example.com (DaveT)]]></author>
			<pubDate>Mon, 01 Jun 2026 17:15:16 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7929&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Delete single mails from Evolution trash]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=8009&amp;action=new</link>
			<description><![CDATA[<p>when i used Evolution i remember the &quot;Save/Restore Evolution Data&quot; function having a duration in direct proportion to the total number of emails in the client.</p><p>to make the duration more tolerable we moved as much as possible to cold-storage/verified-backups to eliminate the &quot;Save/Restore Evolution Data&quot; workload.</p><p>keep us posted on your progress!</p>]]></description>
			<author><![CDATA[dummy@example.com (stargate-sg1-cheyenne-mtn)]]></author>
			<pubDate>Mon, 01 Jun 2026 03:05:20 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=8009&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[GTK2 Revival thread]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7921&amp;action=new</link>
			<description><![CDATA[<p>There are now efforts to improve the filepicker with things like thumbnailing without a file manager pointed to the directory already, tooltips, image previews, and basic UI context menu goodness.</p><p>As well on SteveM&#039;s git repository, the dependency conflict with <span class="bbc">gir1.2-gtk-2.0</span> to also keep stuff like Dia around has been fixed, and can be installed alongside <span class="bbc">gir1.2-dtk</span>.</p><p>Get the Daedalus DEBs below:</p><p><a href="https://git.devuan.org/SteveM/DTK_debs/src/branch/master/daedalus/dtk_2.24.33~git20260512.50c1160/dtk_2.24.33~git20260512.50c1160-3_amd64.tar.xz" rel="nofollow">amd64</a> | <a href="https://git.devuan.org/SteveM/DTK_debs/src/branch/master/daedalus/dtk_2.24.33~git20260512.50c1160/dtk_2.24.33~git20260512.50c1160-3_i386.tar.xz" rel="nofollow">i386</a></p><p>Get the Excalibur DEBs below:</p><p><a href="https://git.devuan.org/SteveM/DTK_debs/src/branch/master/excalibur/dtk_2.24.33~git20260512.50c1160/dtk_2.24.33~git20260512.50c1160-2_all_debs.tar.xz" rel="nofollow">amd64</a></p>]]></description>
			<author><![CDATA[dummy@example.com (brocashelm)]]></author>
			<pubDate>Thu, 21 May 2026 04:05:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7921&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Please, reccommend me a display-manager that isn't garbage]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7979&amp;action=new</link>
			<description><![CDATA[<p>you could always look into building a display manager for the framebuffer, that way it won&#039;t use neither x11 nor wayland, and you can make it to your own desires.</p><p>i mean, writing the software i want to use is what i do when the existing software doesn&#039;t work the way i want and i cannot reconcile with the codebase to work on fixing existing software.</p>]]></description>
			<author><![CDATA[dummy@example.com (EDX-0)]]></author>
			<pubDate>Thu, 21 May 2026 02:14:45 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7979&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Socket file found at socket path /run/seatd.sock, refusing to start]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7987&amp;action=new</link>
			<description><![CDATA[<p>Sorry,It was my mistake becouse I have always used seatd like that and did not check &#039;dwl&#039; by itself.</p>]]></description>
			<author><![CDATA[dummy@example.com (thes3pt3mb3r)]]></author>
			<pubDate>Wed, 20 May 2026 14:30:59 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7987&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[How to Turn Background and Startup Services On and Off]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7982&amp;action=new</link>
			<description><![CDATA[<p>Removing the launcher for that module was an especially asinine move, in a growing list of asinine moves from KDE of late. The justification apparently being to &quot;get people to report bugs instead of working around them, we&#039;ll tell them how to find it if they need it&quot;... <br />I recommend making a .desktop file / application menu entry for it for the future.<br />Other &quot;hidden&quot; kde things that may be of interest:<br /><span class="bbc">kdebugsettings</span><br /><span class="bbc">kcmshell6 kcm_qtquicksettings</span><br /><span class="bbc">kcmshell6 --list</span> in general<br /><span class="bbc">qdbus6 org.kde.KWin /KWin org.kde.KWin.showDebugConsole</span> (kwin debug console)</p>]]></description>
			<author><![CDATA[dummy@example.com (steve_v)]]></author>
			<pubDate>Tue, 19 May 2026 03:58:31 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7982&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Attempting screenshare in Hyprland]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7743&amp;action=new</link>
			<description><![CDATA[<p>Do you actually have a (session) dbus instance running? How was it started?<br />The trick is that you want <em>one</em> session bus, and everything in your session to be using <em>the same</em> bus address. <br />So &quot;DBUS_SESSION_BUS_ADDRESS,unix:path=/run/user/1000/bus&quot; or whatever you are setting the session bus address to needs to be the same as what you passed to dbus-daemon when you started it.</p><p>I use OpenRC user services to start (and supervise) dbus-daemon explicitly, so I know that it was launched with &#039;--address ${XDG_RUNTIME_DIR:-&quot;/run/user/$(id -u)&quot;}/bus&#039;. This may not be the case in your setup, which is why I said &quot;Something along the lines of&quot; rather than &quot;copy-paste this&quot;.<br />If you&#039;re using dbus-launch, you can a: Manually ensure DBUS_SESSION_BUS_ADDRESS is already set in the environment dbus-launch runs with (and set the same for anything that needs to connect to it) b: Make sure everything that needs to connect to the session bus inherits dbus-launch&#039;s environment (since it will set DBUS_SESSION_BUS_ADDRESS itself if it is empty) or c: Use dbus-update-activation-environment as EDX-0 described above.</p><p>When you launch applications with dbus-launch or dbus-run-session, you often end up creating a new dbus session just for that application - (so it will start, but it won&#039;t be able to do IPC with anything else), or in the case of something like hyprland, starting a session but not propagating the bus address to applications started later (usually because something, like a greeter or launcher, is stripping environment). Launching subsequent applications with dbus-run-session risks starting <em>another</em> isolated dbus session, and you end up&#160; back in scenario 1.</p><div class="quotebox"><cite>man dbus-run-session wrote:</cite><blockquote><div><p>&#160; &#160; &#160; &#160;dbus-run-session is used to start a session bus instance of dbus-daemon from a shell script,<br />&#160; &#160; &#160; &#160;and start a specified program in that session. The dbus-daemon will run for as long as the<br />&#160; &#160; &#160; &#160;program does, after which it will terminate.<br />...<br />&#160; &#160; &#160; &#160;Another use is to run regression tests and similar things in an isolated D-Bus session, to<br />&#160; &#160; &#160; &#160;avoid either interfering with the &quot;real&quot; D-Bus session or relying on there already being a<br />&#160; &#160; &#160; &#160;D-Bus session active<br />...<br />&#160; &#160; &#160; &#160;The session bus&#039; address is made available to PROGRAM in the environment variable<br />&#160; &#160; &#160; &#160;DBUS_SESSION_BUS_ADDRESS.</p></div></blockquote></div>]]></description>
			<author><![CDATA[dummy@example.com (steve_v)]]></author>
			<pubDate>Tue, 19 May 2026 02:50:32 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7743&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[Games. Counter Strike 2 On Steam]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=6255&amp;action=new</link>
			<description><![CDATA[<p>Yeah CS2 has been a mess lately with the shader compiling and crashes, a lot of people have been dealing with the same thing. While everyone’s focused on the technical issues though, I honestly think people are sleeping on the current drop pool. This is probably the last really good drop pool before terminals get too cheap and the whole market shifts because of oversupply and other factors.</p><p>If anyone’s interested, I’d seriously recommend taking advantage now instead of waiting. Personally, I’ve seen this as one of the only games where regular players can still make cash almost for free just by understanding the system and staying active.</p><p>This breakdown explains the active pool pretty well:<br /><a href="https://blog.cs2.ad/cs2-active-drop-pool/" rel="nofollow">https://blog.cs2.ad/cs2-active-drop-pool/</a></p>]]></description>
			<author><![CDATA[dummy@example.com (Ch@ster $m1th)]]></author>
			<pubDate>Fri, 15 May 2026 22:31:21 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=6255&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] any way of getting cdemu working without system d]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7960&amp;action=new</link>
			<description><![CDATA[<p>update it works just fine</p>]]></description>
			<author><![CDATA[dummy@example.com (Anonymous Goldfish)]]></author>
			<pubDate>Tue, 12 May 2026 01:58:42 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7960&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[GIMP won't start, error message]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7937&amp;action=new</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>Surprised? Not.</p></div></blockquote></div><p>Its linux baby, here nothing works good <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /><br />Bugs at linux have name - &quot;features&quot; <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Mon, 11 May 2026 16:50:00 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7937&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[After reboot pavucontrol always sets to Headphones insted Line-out]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7967&amp;action=new</link>
			<description><![CDATA[<p>it is old bug?<br />why it still not fixed?<br /><a href="https://dev1galaxy.org/viewtopic.php?id=4002" rel="nofollow">https://dev1galaxy.org/viewtopic.php?id=4002</a></p>]]></description>
			<author><![CDATA[dummy@example.com (deepforest)]]></author>
			<pubDate>Mon, 11 May 2026 16:45:22 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7967&amp;action=new</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Devuan+dwm+xinitrc: how to start properly?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?id=7940&amp;action=new</link>
			<description><![CDATA[<p>i have a light setup without a desktop as well<br />my xinitrc is just</p><p>picom --backend glx --vsync &amp; xrandr --output eDP-1 --brightness 0.7 --mode 1280x720 &amp; dwm</p>]]></description>
			<author><![CDATA[dummy@example.com (Anonymous Goldfish)]]></author>
			<pubDate>Sat, 09 May 2026 01:28:43 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?id=7940&amp;action=new</guid>
		</item>
	</channel>
</rss>
