Search
To enable access to PulseAudio for OpenRGB (or any Flatpak application for that matter) you need to add --socket=pulseaudio to the finish-args section of the application's manifest. You can test t...
It's been a while since I did proxy server stuff with Chrome and friends. (I'm mostly a Firefox user.) But when I was into it, I used an extension called SwitchyOmega. That extension itself has app...
I'm trying to use a proxy server with chromium but I can't get it to work. I'm using Arch Linux. Here are the steps I'm following: I find a proxy in the UK on the British Proxy List at proxyno...
It doesn't work unless you open Konsole settings and check the option for "Run all Konsole windows in a single process." From bugs.kde.org: My bad, it happens when you turn off running all konso...
I want to issue a command[1] to open a certain folder in a new tab of the currently running Konsole instance (if any). There's a --new-tab option, but konsole --new-tab opens a new instance, even ...
You can find the version information in /proc/version. $ cat /proc/version Linux version 6.8.0-53-generic (buildd@lcy02-amd64-046) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, ...
uname, short for Unix Name, is part of GNU coreutils, and thus very likely already installed: $ uname --kernel-release 6.13.3-...
How to get the version of the currently running Linux kernel? I'm looking for a commandline solution, but feel free to post GUI solutions as well.
(This answer updates this one.) This issue seems to be fixed in IBus 1.5.27. As this commit shows, the offending line xkb:latam:*:* has been deleted from engines/denylist.txt, which now allows ...
I answered this question over SE, as it can be found here. UPDATE. I've found that the latest commit in the IBus source has the blacklist already implemented, and that all Latin American layouts...
The following question was asked by SE user RAKK. The original source can be found here. I am running Debian 11 Bullseye for AMD64 on an HP Pavillion Touch 14-N009LA laptop, using IBus and MATE ...
I'm trying to make OpenRGB display a light show based on the music playing, however, audio device selection is unavailable in the application, and upon checking its permissions with flatpak permiss...
The shell uses ; to reliably end a statement, with foreground execution. In some cases, a line break also ends a statement with foreground (except that when the statement is not obviously complete...
I know I can write a function at a Bash command line like so: $ test() { echo 'test' ; } I also found that I can write the } on a separate line, and omit ;: $ test () { echo 'test' > } ...
Rationale Occasionally, audio from a very useful proprietary application is too quiet to be audible. This is impossible to remediate at the application level because: I am unable to request t...
Hello everyone 👋 The problem I have ~200 video files (.MP4) that I would like to organise based on their dimensions. However, the Dolphin File Manager (that I installed with Flatpak) does not di...
Hello, fellow Arch user. I had never heard of this wireless protocol until reading your question. A web search for zigbee linux brings up Zigbee2MQTT and a couple pages with setup instructions: ht...
By default modern Ubuntu versions run the service systemd-timesyncd in the background. It fetches the time at regular intervals and should automatically set your system time when an NTP server is r...
For certain GPU-accelerated tasks, such as Docker containers using GPU, I need to run the following on every boot: sudo nvidia-ctk cdi generate --output /var/run/cdi/nvidia.yaml Without this, G...
TL;DR BIOS Setup, not Operating System In most systems there is a user-accessible setup page that is part of the BIOS. This is accessed before starting Linux, Windows or any other operating system...
How to reset time in Ubuntu after replacing CMOS battery?
Bottles has a builtin dependency manager which it looks like you are using. The manager downloads dependencies from their official location and installs them in some way that works "better" for Wi...
I think I finally found a topic the Arch wiki doesn't cover :) I have a Zigbee USB dongle and some Zigbee-capable wireless devices. The dongle is supposed to create a network to which the devices ...
Suppose I am the author of a shell utility called bar. One common use case is in pipelines like foo | bar, where foo sometimes runs interactively. I want to distinguish situations where interaction...
For functions, you could dump all currently-defined functions to a file such as appending to ~/.bashrc. typeset -f >> ~/.bashrc Note that this specifically will display every function, re...