#justlinuxthings

𝘋𝘪𝘳𝘬dirk@gts.0x7be.net
2025-05-05

A bit of overoptimizing caused some weird color glitches, but that is sorted out now, and it actually works. (and looks as expected on an actual terminal. The confetti was just some testing.

Import and export are also optimized, and there is a crude permalink function that causes thousands of characters long URLs but works up to a certain complexity.

… and all of this for such a niche 🙃

#IssueDrawer #RecreationalCoding #ArchLinux :arch: #JustLinuxThings #TTY1

8Bit | :linux: :godot: | 🍶🦊memoriesin8bit@mastodon.gamedev.place
2025-04-11

Oh, wow that one very specific problem I noticed with QT6 (but not QT5) KDE applications that everyone blamed the Nvidia driver for got resolved with a QT update.
WHO WOULD HAVE THOUGHT???

#JustLinuxThings

2025-03-21

@peppe thaks man... it feels good, as I'm on the suck train for a while now 😅

Since I've switched themes, LightDM stopped working, and I can't log in until I first log in on an other TTY in text mode... Apparently opening the #LightDM greeter settings app screwed everything up? Now I'm looking for an alternative, but nothing else seem to support a "switch user" type feature?

#justLinuxThings I guess...

smh

#Linux #ArchLinux #ScreenLock #SSDM #DisplayManager

2025-03-21

because #gimp 3.0 looks hideous with the (absolutely outdated) GTK theme I'm using, I wanted to change the system theme...

the issue is, I'm in #DWM on #ArchLinux, and I use the #XFCE bar, so I have the XFCE settings app installed, but the icon theme and gtk theme can not be changed from there.

luckily, I have #Cinnamon also installed, so I can log in there, use the settings app there, and that works.

why though?! #JustLinuxThings

#Linux #FreeSoftware

𝘋𝘪𝘳𝘬dirk@gts.0x7be.net
2025-02-26

After lots and lots of waiting and trying out multiple different things regarding single window recording in #OBS :obs: on #Wayland :wayland: running #labwc :labwc: there is now a solution in place I can work with.

I wrote a wrapper script (see here) that does the following things when added as #pipemenu in labwc and I click the menu entry to create the output.

  1. Add a virtual output
  2. Use wlr-randr to set the geometry
  3. Use swaybg to set the wallpaper
  4. Send an update signal to a custom #Waybar module

I can now start #OBS and can add a #PipeWire screen recording and select the output (I have to do it blindly by just moving the cursor outside my actual display, because there is no menu, but that’s fine).

For what I’m doing the performance of the OBS preview is fast enough so I simply move the cursor over to the virtual output and use it “inside OBS”.

When I’m done, I invoke the script again, by clicking the remove entry which is dynamically shown if the output is active.

  1. Remove the output
  2. Remove “the output’s swaybg instance”
  3. Send an update signal to a custom Waybar instance

Until individual-window recording will be possible this is a good workaround.

#JustLinuxThings #ModernLinuxProblems #SharingIsCaring #scripting #Luanti #MinetestGame

//cc @whynothugo (thanks) @LXQt (thanks, too)

Screenshot of a dual-output setup.

The right output in 2K resolution and shows Luanti in fullscreen.

The left output is in 4K resolution and shows OBS with a PipeWire screen recording of the right output and a small circular webcam image in the top right corner.
2025-02-21

Will wait patiently for the Cosmic Desktop Environment to mature before I distrohop to Pop!_OS

#JustLinuxThings

Kiran 🏳️‍⚧️kirancodes@transfem.social
2025-02-17

who up updating their kernel rn in the vague hopes it'll fix bluetooth pairing issues #justlinuxthings

Kiran 🏳️‍⚧️kirancodes@transfem.social
2025-02-12

@puppygirlhornypost2 #justlinuxthings (I'm assuming linux just from my own experiences haha)

𝘋𝘪𝘳𝘬dirk@gts.0x7be.net
2025-01-27

I never was a fan of this, but removing packages that are not explicitly installed and that are not dependencies of other packages is quite satisfying when the list contains packages with "weird" or "random" names. Also cleaning up Pacman cache is nice.

pacman -Rns $(pacman -Qtdq)
pacman -Scc

#justlinuxthings #archlinux #pacman #administration

2025-01-21

hey, whaddya know, one "oops I forgot to plug the laptop in and it died" and suddenly the bluetooth stack functions again, when several reboots previously had no effect #JustLinuxThings

» P I E T . L U «PietLu@nrw.social
2025-01-16

Ach gucke man schau, mein #Manjaro hat mich vor x Zeiteinheiten automatisch von den testing-Paketquellen zu den stable-Paketquellen rübergeschoben.

Und ich wunderte mich schon, warum die Updates in letzter Zeit so spärlich kamen und ich noch nich in den Genuss von Xfce 4.20 kam.

#JustLinuxThings

2025-01-04

Upon further investigations I unintentionally set up #Howdy to work with the regular video camera and not the IR sensor/blaster. I have since rectified the situation, with the help of the ‘linux-enable-ir-emitter’ utility.

#JustLinuxThings

Ma10gan ♠️Ⓥma10gan
2024-11-20

Being addicted to dragging all your windows around with alt + click instead of grabbing the title bar and then feeling outright yeasty when your motor memory kicks in on Windows or Mac.

𝘋𝘪𝘳𝘬dirk@gts.0x7be.net
2024-09-23

[tldr]: TIL: sudoedit

I never ever was a fan of sudo because I like having my accounts properly and strictly separated. If I want to do root stuff, I become root using su -l. (And in general I will continue handling it like this in the future.)

Since my distribution’s package build system has it as hard dependency, I have sudo installed. It’s configured to never cache anything and always only ask for the root password, with no further “real” configuration. I am the only use on the system, so I don’t care about running tasks as different user (and if so, it’s the root account).

Defaults rootpw
Defaults timestamp_timeout=0
dirk ALL=(ALL) ALL

… this allows the package creation process to run properly. At a specific point I enter my root password and that’s fine. Under normal circumstances I just use su -l.

But since I recently had to configure a lot of files outside my home directory I always had the problem of a fully unconfigured editor. No proper syntax highlighting, my key combinations, etc. all not present (I prefer leaving root as unconfigured as possible).

Then I found sudoedit.

It runs in my normal environment, with all my configuration but allows me to edit files outside my $HOME. I can just replace nvim /etc/foo.bar with sudoedit /etc/foo.bar and enter the root password and then edit the file as if it was a file in my environment.

It sometimes worth leaving your comfort zone to explore new things.

//tagged: #JustLinuxThings #TIL #commandline #sudo #sudoedit #changes

Kiran 🏳️‍⚧️kirancodes@transfem.social
2024-09-17

My laptop had this weird issue where periodically start garbling all audio into like a weird metallic tone? It would just randomly crop up and off now and then, so I assumed it was like a hardware issue

today I decided to search for it just in case, and wow.

it turns out there's some software called speach-dispatcher? idk what it does, but apparently whenever it gets activated it screws up audio.

#justlinuxthings omg fml I hate linux so much

2024-07-24

What I love most about #CUDA on #Linux is it's ability to just simply break with no error messages outside applications like blender or resolve saying "I can't find a valid GPU"

#JustLinuxThings

2024-06-09

Upgraded to Fedora 40 and everything's fine 🤷

2024-06-09

Upgraded from 38 to 39 and now I can't log into the GUI and have to login to a tty because my password somehow doesn't work for the GUI login screen any more

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst