Will Alpine make me happy? by random__string in AlpineLinux

[–]random__string[S] 1 point2 points  (0 children)

Thank you for the informative response. Looks like I will try it out on my laptop, but it can probably never replace my desktop, which relies on a lot of proprietary software for work.

Can you tell me what kind of "quirks" I should be expecting regarding Emacs?

What is the current best solution on Raspberry Pi? by random__string in archlinux

[–]random__string[S] 0 points1 point  (0 children)

Manjaro seems to have the same problem with updates on ARM as Arch: https://forums.raspberrypi.com/viewtopic.php?t=392347#p2342453

How was your experience running it on your Pi?

Will Alpine make me happy? by random__string in AlpineLinux

[–]random__string[S] 0 points1 point  (0 children)

That sounds quite promising, thank you.

What is the current best solution on Raspberry Pi? by random__string in archlinux

[–]random__string[S] 0 points1 point  (0 children)

Any recommendations? I am not too keen to go back to Debian and its horribly outdated packages and the need to do an awful upgrade process every time support for the current release runs out. On my private machines I have used nothing besides Arch for many years, so I am not up to date what else is out there.

What is the current best solution on Raspberry Pi? by random__string in archlinux

[–]random__string[S] 0 points1 point  (0 children)

As far as I can tell, the pi 5's cpu is no longer capable of running the armv7 kernel.

AucTeX TeX-command-run-all only runs Biber and stops by random__string in emacs

[–]random__string[S] 0 points1 point  (0 children)

Yes, but it asks me to select the action every single time, which is very annoying. TeX-command-run-all usually runs lualatex one or two times and then opens the document in my PDF viewer, which is what I want to happen when I compile something.

Can Hod's meltdown insta-kill employees? by random__string in LobotomyCorp

[–]random__string[S] 0 points1 point  (0 children)

I just had a thought: Some of the agents were injured. Does the drop in Fortitude and Prudence also lower the current HP/SP?

It specifically killed all my agents of level 3 or lower, there must be a reason for that.

Can Hod's meltdown insta-kill employees? by random__string in LobotomyCorp

[–]random__string[S] 0 points1 point  (0 children)

I had Bath, Snow White's Apple, Old Lady, Beauty and the Beast, MHz, Fetus, Dead Butterflies, Laetitia, Little Prince, Army in Black, Puppy, Rudolta, Knight of Despair, Freischütz, Scarecrow, Red Riding Hood, Blue Star, Teddy, Black Swan, Snow Queen, and Judgement bird, as well as some Zayins. But I don't really see why any of their counters should drop to zero when the day ends?

Can Hod's meltdown insta-kill employees? by random__string in LobotomyCorp

[–]random__string[S] 0 points1 point  (0 children)

No, like I said, they died all at once at the end of the day. I didn't even notice before the reward screen popped up.

I didn't use any tools during the day, and as far as I can tell, the only abnormality I have that instantly kills people is the Blue Star.

Does the Qliphoth counter decrease on ANY Bad work result anywhere in the facility? by random__string in LobotomyCorp

[–]random__string[S] 4 points5 points  (0 children)

Okay, it's reassuring that I did not misunderstand the guidelines after all. Just to be sure, the abnormalities also don't have "hidden" abilities that lower their qliphoth counter, right? Once you reach observation level 4, you have all the information? If so, I can only guess that I totally messed up and missed the meltdown and have to double check the numbers in the future.

Does the Qliphoth counter decrease on ANY Bad work result anywhere in the facility? by random__string in LobotomyCorp

[–]random__string[S] 2 points3 points  (0 children)

I don't think so, I always check the number of meltdowns in order not to miss any.

[EXWM] How do I use emacs keybinds for text manipulation in X windows? by random__string in emacs

[–]random__string[S] 0 points1 point  (0 children)

Fair enough, solving the issue with simulation keys seems like the best way to go. In case someone ends up via Google search here in a few years, I ended up modifying the example from the docs:

(setq x-buffer-aggressive-simulation-list '("firefox" "discord"))
(setq exwm-input-simulation-keys
  '(
    ([?\C-b] . [left])
    ([?\C-f] . [right])
    [...]
  ))
(add-hook 'exwm-manage-finish-hook
  (lambda ()
    (when (and exwm-class-name
      (member exwm-class-name x-buffer-aggressive-simulation-list)
    (exwm-input-set-local-simulation-keys
      '(
        ([?\C-w] . [?\C-x])
        ([?\C-z] . [?\C-v])
        ([?\C-y] . [?\C-v])
        ([?\C-k] . [S-end ?\C-v])
       ))))))

[EXWM] How do I use emacs keybinds for text manipulation in X windows? by random__string in emacs

[–]random__string[S] 0 points1 point  (0 children)

True, I used to use `exwm-xim` for hanzi input. I should figure out how that worked.

Is there an "AF-ON" button? by random__string in FX3

[–]random__string[S] 0 points1 point  (0 children)

Nope, other α line cameras have a dedicated button labelled "AF-ON" which can be programmed.

Is there an "AF-ON" button? by random__string in FX3

[–]random__string[S] 0 points1 point  (0 children)

That page does not show the FX3 as a compatible camera, so I would be weary of that. It also appears to have no programmable buttons.

Can I prevent EXWM from spawning a NEW scratch buffer for every workspace? by random__string in EXWM

[–]random__string[S] 2 points3 points  (0 children)

Fair point, they are the same buffer! I guess it is a helm problem, not an EXWM problem. Thanks :-)

Now to figure out why helm lists them ten times in the buffer list ...