The officially official Devuan Forum!

You are not logged in.

#228 Re: Off-topic » A Merry and Happy today » 2025-12-24 21:42:38

Right back atcha good buddy!

Happiest of holidays to all my fellow Devuanites! I hope this season finds you happy and healthy and I hope that continues into a new and prosperous year for all.
smile

#230 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-23 00:30:40

Got a new i386 package built for this thanks to fsmithred compiling the binaries for me! Just waiting on a little more testing and then i'll put it up for further testing.

Working on version 3.0-1 now, i've written a little dash/yad script to open an editable text-info window to mod/delete EQ presets in the presets.csv file. Rather than add another button my idea is to take the existing "Save Pre-set" button and change it to "Save/Edit" with a tooltip that explains. So a normal left-click would save a named pre-set as it does now, but a right-click would open the yad window to edit the presets.csv file.

#232 Re: Other Issues » [SOLVED] Synaptic problem, or what? » 2025-12-21 21:46:10

Well I checked the "visit homepage" function for the first time in many years, and it seems to be working at least, that seems handier than just fetching a screenshot.

#233 Re: Desktop and Multimedia » Multiple Windows programs in a single wine config? » 2025-12-21 21:34:35

^^^Good points! But that's the neat thing about Imagemagick, the command in the above script is just very basic using IM's default settings, but it only takes a few other small commands to do it in a different fashion. Just adding -strip to the above command takes out profiles and comments and such. And the default setting in IM already is to compress by optimizing the Huffman table.

Most image re-sizing programs i've seen are just frontends for IM. wink

#234 Re: Desktop and Multimedia » Multiple Windows programs in a single wine config? » 2025-12-21 20:17:13

One useful thing xnview currently lacks is quick batch optimization of JPEGs from the thumbnail view. But this can still be done via the command line as jpegoptim is in the Debian repos

Or even simpler:

#!/bin/sh

sizebox=$(yad --fixed --borders=10 --window-icon=image --form --title="Resize Image" --field="Resize to:" --width=400 --text-align=center --text="Enter new size (W x H in pixels, i.e. 800x600, 1024x768 etc.)")

size=$(echo $sizebox | awk 'BEGIN {FS="|" } { print $1 }')

if [ -z "$size" ]; then
    exit 0
fi

for file in "$@"; do
    convert "$file" -resize "$size" -set filename:copy '%d/%t-%wx%h' '%[filename:copy].jpg'
done

Combined with a .desktop in your file-manager in the right place:

[Desktop Entry]
Type=Action
Name=Resize Image
Comment=Make a re-sized copy of image
Icon=edit-cut
Profiles=resize;

[X-Action-Profile resize]
Exec=sh -c "cd %d && shrink2 %F" 
MimeTypes=image/bmp;image/jpeg;image/png;image/webp;image/heic;image/heif;image/avif;

And now you can just select in the file-manager and right-click. This makes for tiny file sizes and default output is jpg. Easy enough to tweak settings to change any of it.

It will do singles, and it will do batches as long as they're the same format, wouldn't be too hard to make it do mixed batches too though, i'm just lazy lol. lol

#235 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-21 19:54:17

Just noticed: is there any possibility to adjust the EQ for the right and left channel seperately? That would open the possibility to adjust it according to the hearing curves which in my case are really different.

That's a great question! It can be done in the mixer for sure, and I haven't seen it done or tried it myself but I would think it's absolutely possible in the EQ as well.

Unfortunately both are beyond the scope of this simple utility project, at least for the present and forseeable future. Something like that would need it's own branch as I want to keep the main project an uber-simple drop-in base system. But again it's a great question...i'll do some thinking on it, thanks! smile

#236 Re: Other Issues » [SOLVED] Synaptic problem, or what? » 2025-12-21 17:04:08

Exotic non-essential function that nobody really uses and tests?

Yep. Have never used it. In general I don't like the idea of clicking external links in programs that want to connect me to gawd-knows-what.

#237 Re: Other Issues » [SOLVED] Synaptic problem, or what? » 2025-12-20 20:49:47

So when I double click the deb file I get a message saying it requires the installation of 115 additional packages.

Are you sure you got the right version? For Debian 13?

#238 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-20 16:03:17

Great job!
You may need to make a minor change in the README.txt file for the path to .asoundrc file, so that it reads  /usr/share/alsatune instead of /usr/share/mxeq.

@ilargi
Thank you! And arrrgh, lol, you're right of course...I swear, if I had a dollar for every time I rolled up something and forgot to update all the documentation...seriously, when my wife hears me say i'm about to squash a new Vuu-do iso she always asks if i've updated the release notes. lol

Will fix that asap. Working on Vuu-do updates this week and i'll get all that sorted too. EDIT: It was bugging me, had another couple spots I hadn't completed the conversion to alsatune as well, so I fixed it and re-packaged and uploaded. Thanks for catching that!!

@Calamity, thank you! There are some nice mixers out there for alsa, just saw a new project somebody did in QT for the mixer and it's really nice and very complete with some features power-users and audiophiles might appreciate.  Mine is a little more simple and pedestrian, but it should get the job done for most folks.

#239 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-18 23:36:58

New version 3.0-0 of Alsatune uploaded, new features and I changed the name of the package and main script to be "alsatune", no more potential conflicts. So it's ready for testing.

I have moved the source files for the two C scripts out of the package, and instead they are in a tar.xz source file that is also on the site for anyone who wants to check out the source code.

https://sourceforge.net/projects/vuu-do … /AlsaTune/

#240 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-17 23:42:15

If you want a copy of this, grab it now, i'll be taking both versions down from Sourceforge in the morning.
(versions 1 and 2, naming conflict).

#241 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-17 00:41:06

You can click the below thumbnail to get the fullsize version:

7skkk4.jpg

#242 Re: Devuan » Devuan 6 Extremely Poor Quality Control. » 2025-12-17 00:06:25

My take on it for what it's worth, i'm fond of analogies as like memes they allow us to impart more info with less words.

I spent many years in various types of construction and fabrication, so that's the basis for this analogy.

Devuan is not a homebuilder, Devuan is Home Depot, with tens of thousands of building materials and tools created by a diverse group of folks worldwide, they provide a range of products to cover almost any need, while also trying to filter out the bad products that try to sneak in.

I, as a person creating a distro, am the homebuilder. It is my job to be architect, designer, general contractor, carpenter, plumber, electrician, and to provide a finished ready-to-move-in home.

That's as simple as I can make it, to me Devuan is Home Depot, and quite a nice one at that. Bonus: I don't have to pay for the materials or tools. I go shopping and come home with a trailer-load of cool stuff and am only limited by my own skills and creativity.

#243 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-16 19:06:26

cumbersome, bloated

@wert, bro, the deb package for the current 2.1 version is 21.8 kb,and that includes the main script, the helper script, a giant readme, the entirety of the source code, a .desktop, an asoundrc file, and a test tone .wav file that's larger than the main script itself.... in what world is that considered "bloated"??

#244 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-16 19:02:11

Had alsamixer and alsamixer -D equal in the menu but replaced both with your app... polished, easy to use and presets. Thanks greenjeans!

Thank you, you just made my day! Yep I did the same thing for a long time, menu entries to open the terminal versions...then it just became another itch I couldn't scratch and I felt I could make something better.

#245 Re: Freedom Hacks » BlueALSA without systemd » 2025-12-16 16:12:30

I guess you won't be interested but as you may know, the action path for Devuan would be for a maintainer to set up a fork project (at git.devuan.org) to sort out its utility in Devuan. I anyhow invite you to take on that role for this package (as well as fftrate packages if you like).

I agree 100%, I think Igor would be the perfect candidate to maintain packages like fftrate.  He's certainly knowledgeable about all things ALSA, and you've already done the hard part for fftrate.

C'mon Igor, step up to the plate bro! Ralph's rolling out the red carpet for ya and Devuan is clearly onboard with all this amazing work being done in ALSA these days, we can all make a real difference in how sound is dealt with in Linux. big_smile

#246 Re: Devuan Derivatives » [SOLVED] printer » 2025-12-16 16:01:49

I typically use the package system-config-printer, it's a nice little gui for helping get set up, and works fine in my experience with hplip and all the other backend drivers and cups stuff.

If it's a network printer as opposed to direct connect, cups-browsed might help.

#247 Re: Packaging for Devuan » (request) including of USBimager » 2025-12-16 15:58:21

however, it would not recognize the usb-stick for when writing iso, however it would recognize it when trying to format usb-stick?

Wow, never had that problem with it, weird. It's no exaggeration to say i've used it 1000 times in the last year, and never once had a problem. In fact I made a helper app to go with it, to add a fat32 data partition to the stick after installing the iso.

Possibly you're missing a dependency or maybe even a recommend? Let me know how it turns out please!

#248 Re: Devuan » Devuan 6 Extremely Poor Quality Control. » 2025-12-16 15:53:14

And what I have seen is inherited from Debian upstream.

^^THIS^^. And not just Debian but further upstream too.

I'm pretty blown away at all the work the devs have had to do (and are still doing) to make it work at all. Bless them all for doing it too, with no pay and not a lot of gratitude shown by some.

At some point it's time to stop walking away from things that aren't working so well, and jump into the fray and start helping.

Once more unto the breech dear friends. wink

#249 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-16 15:27:59

too much gtk and too little alsa
that gtk is going to kill you.

You are sooooo right!!! Not just gtk though, css is wearing me out too. Those two things cost me several hours of flailing about the last two days. arrrgh.

#include <wayland-client-protocol.h>

Ummm...no....just...no. Not happening ever.

#250 Re: DIY » ALSA-only purists: Question, new GUI app for the mixer and EQ? » 2025-12-16 15:22:25

Great job. Have you considered adding capture? Could be handy for people using jitsi etc. I couldn't figure out why the mic wasn't working and it turned out capture was not enabled.

Hey buddy! Yeah I did actually, the script now scans for all channels on the backend including capture, got a nice little slider for it even on my ancient laptop.

The latest 2.1 and 3.0 scripts and now also the alsatoggle script, poll the backend every time you start them up and pull everything that exists and use that to populate the gui, so even if you change the physical sound card on a given system, the next time you open AlsaTune (or alsatoggle) all your new stuff will be what's there.

Board footer

Forum Software