Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Posts by matthewsnyder‭

197 posts
66%
+2 −0
Q&A How do I tweak the start parameters of GUI apps?

tl;dr: Find the .desktop file that you are currently running It is probably in a system location, so copy it to a user location Modify the file contents The normal way to create icons for...

posted 1y ago by matthewsnyder‭

Answer
66%
+4 −1
Q&A How do you play Windows games on Linux?

Yes, you can run most Windows games on Linux through Wine. There are some specific caveats when using Wine, such as sandboxing (security), the choice of runner, drivers, video, controllers (gamepad...

posted 4mo ago by matthewsnyder‭  ·  edited 4mo ago by matthewsnyder‭

Answer
66%
+2 −0
Q&A On a systemd distro, how to find out which boots were resume from hibernate?

If I run journalctl --list-boots I get a list of my previous boots. How can I tell which ones of these were resumes from hibernate, and which were booting "from scratch"? I want to do this becaus...

0 answers  ·  posted 4mo ago by matthewsnyder‭

66%
+2 −0
Q&A How to find all files not part of a package on Arch?

How do I find all actual files (not devices, sockets, etc) on my system that are: Not part of a package Not under /home (I assume that packages are supposed to never put files there) on Arch...

1 answer  ·  posted 4mo ago by matthewsnyder‭  ·  last activity 4mo ago by Michael‭

66%
+2 −0
Q&A How do you install Manjaro as LVM on LUKS?

There is a popular partitioning scheme, described in the Arch wiki as LVM on LUKS. The meat of this is: /boot is its own unencrypted partition The rest of the drive is a giant LUKS partition I...

0 answers  ·  posted 5mo ago by matthewsnyder‭

66%
+2 −0
Q&A How do I find out the version of a program in a terminal?

If the program was installed with your package manager, the package manager should be able to tell you that. For example: $ pacman --query bash bash 5.2.026-2 If you don't know the package n...

posted 5mo ago by matthewsnyder‭  ·  edited 5mo ago by matthewsnyder‭

Answer
66%
+2 −0
Q&A How do you rotate webcam feed by 90 degrees?

When I view my document camera's feed in guvcview it is in landscape mode. I want it to capture things in portrait mode, since I usually take photos of documents. Currently, I have to rotate all t...

1 answer  ·  posted 6mo ago by matthewsnyder‭  ·  last activity 5mo ago by Quasímodo‭

Question webcam
66%
+2 −0
Q&A How do I add a shortcut to run a program to my DE?

On Linux, the basic way to run every program is to invoke it through a terminal. The shortcuts in DEs come from ".desktop" files. On a Linux system, there are a couple of directories (system wide,...

posted 6mo ago by matthewsnyder‭

Answer
66%
+2 −0
Q&A How do I add a shortcut to run a program to my DE?

My DE has a bunch of programs in the start/applications menu. How can I add my own in there? For example, say I found a terminal command foo --bar --baz that does something I want. But I don't want...

1 answer  ·  posted 6mo ago by matthewsnyder‭  ·  last activity 6mo ago by matthewsnyder‭

66%
+2 −0
Q&A ==> WARNING: Possibly missing firmware for module: 'foo'

When I create the initramfs, I sometimes see messages like: ==> WARNING: Possibly missing firmware for module: 'xhci_pci' I get many for different modules. What do they mean? Should I in...

1 answer  ·  posted 8mo ago by matthewsnyder‭  ·  last activity 8mo ago by Iizuki‭

66%
+2 −0
Q&A What are non-POSIX shells and what's the point of them?

From the average user's perspective: Back in the day when people were figuring out how to do shells, there were as many shell syntaxes as shells. Everyone made up their own little language to go w...

posted 8mo ago by matthewsnyder‭  ·  edited 8mo ago by matthewsnyder‭

Answer
66%
+2 −0
Q&A How do you generate arbitrary random numbers from /dev/random?

Suppose I want to get random numbers from /dev/random with basic CLI tools. Is there a way to do it, that's easier to type and read than python -c 'import random; print(100 + 200*random.random())'?...

1 answer  ·  posted 8mo ago by matthewsnyder‭  ·  last activity 8mo ago by r~~‭

Question cli random
66%
+2 −0
Q&A What is synchronization in Wine?

Wine has options for "Synchronization", like "Esync" or "Fsync". What do these actually do? What is the purpose of such an option? What is the impact to normal usage of a Windows program in Wine?

1 answer  ·  posted 10mo ago by matthewsnyder‭  ·  last activity 9mo ago by matthewsnyder‭

Question wine
66%
+2 −0
Q&A How do I find files?

The ancient utility find should come installed on the majority of distributions. Technically, find recursively locates all files and directories under a path, and prints their full paths. It is of ...

posted 1y ago by matthewsnyder‭

Answer
66%
+2 −0
Q&A How do I find files?

How can I search for files on my system? Ideally, I would like to search by various criteria, like date, name, extension, etc.

1 answer  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by matthewsnyder‭

Question shell file
66%
+2 −0
Q&A How to get a new IP address from DHCP?

Restarting NetworkManager should be enough: sudo systemctl restart NetworkManger

posted 1y ago by matthewsnyder‭

Answer
66%
+2 −0
Q&A Where does GtkFileChooserDialog store bookmarks?

I have some bookmarked folders in GtkFileChooserDialog. I want to add these to my dotfiles. Where are the bookmarks stored?

1 answer  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by Quasímodo‭

Question dotfiles
66%
+2 −0
Q&A Run a command *later*

How can I run a command later? I'm looking for a CLI way to schedule a command to be run later. I know that I could create a systemd timer, install it, activate it... That is too much work. I want...

2 answers  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by Canina‭

Question cli scheduling
66%
+2 −0
Q&A Highlight regions in an image with CLI

I have an image (a photo) and I want to highlight certain parts of this. I want to do this from the CLI. I am planning to store the pixel coordinates of polygon vertices in a file, and when I run ...

2 answers  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by samcarter‭

66%
+2 −0
Q&A What does the "Valid" column mean in the output of "faillock"?

I was looking into unlocking my login after too many incorrect password attempts. I found this post about it. Doing faillock -user $(whoami) --reset did indeed unlock the login. However, what exac...

1 answer  ·  posted 1y ago by matthewsnyder‭  ·  edited 1y ago by AdminBee‭

Question arch-linux password
66%
+2 −0
Q&A How do I set up my own DNS on my LAN, with delegation of public domains?

I want to have a local DNS server on my home LAN, say at 192.168.1.123. All of my machines will use 192.168.1.123 as their only DNS server when connected to my home network. By default, my DNS ser...

1 answer  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by Canina‭

Question dns
66%
+4 −1
Q&A Simplest way of stripping leading/trailing whitespace from file or program output

What is the simplest shell idiom for stripping leading and trailing whitespace from a file or program output? Ideally I am looking for the equivalent of trim or strip methods in some languages. Th...

3 answers  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by AdminBee‭

Question text-processing
66%
+2 −0
Q&A How do I make media keys work with PipeWire?

My keyboard has keys for mute, volume up, volume down. In i3wm, I used to have these bound with: bindsym XF86AudioRaiseVolume exec --no-startup-id pulsemixer --change-volume +10 --max-volume 100 ...

1 answer  ·  posted 1y ago by matthewsnyder‭  ·  last activity 1y ago by Mithical‭

Question arch-linux sound i3wm
66%
+2 −0
Q&A How to convert Flac to Mp3 with FFmpeg?

I see that this is self-answered, but I disagree that the answer provided is the best way. The best way is to properly utilize the Unix philosophy, by decomposing the problem into simpler sub-probl...

posted 1y ago by matthewsnyder‭  ·  edited 1y ago by matthewsnyder‭

Answer
62%
+3 −1
Meta Decomposing compound questions

The basis of the Unix philosophy is to decompose complex tasks into simple sub-tasks, so that one can easily choose a combination of simple Unix tools to solve the problem in an intuitive way. Oft...

0 answers  ·  posted 1y ago by matthewsnyder‭

Question discussion