nmtake

joined 1 year ago
[–] nmtake@lemm.ee 2 points 1 month ago (1 children)

Yes. In a typical live USB session, all changes are written to the RAM, so they are lost on the shutdown. Some live USB supports persistent storage, but I think it's not so common.

[–] nmtake@lemm.ee 2 points 1 month ago (3 children)

I see. Before the switching, you may want to try Linux on Windows using WSL2 or VirtualBox, etc. Also, Mint and other distros provide bootable image, so you can try it without installing Mint on your machine. Good luck!

[–] nmtake@lemm.ee 2 points 1 month ago (5 children)

Kernels are usually intalled in '/boot', and we usually install new kernels via a package manager (gnome-software, pacman, dnf, etc.). What distro and package manager are you using?

[–] nmtake@lemm.ee 4 points 1 month ago (12 children)

New kernel may introduce regressions. See this similar issue on kernel 6.10.3, or try another version of kernel on startup if it's possible.

[–] nmtake@lemm.ee 5 points 1 month ago

Can you try true instead of True?

https://specifications.freedesktop.org/desktop-entry-spec/latest/value-types.html

Values of type boolean must either be the string true or false.

[–] nmtake@lemm.ee 4 points 1 month ago

You can get 50 items at most with limit=50. Try

https://lemmy.ml/feeds/c/lemmy_support.xml?sort=New&limit=50
[–] nmtake@lemm.ee 3 points 1 month ago

Thankfully, with a modern minibuffer UI package (Ivy or Vertico, for example), we don't need to remember arcane key bindings to run rarely used commands. To run such command, just run M-x and enter a substring of the command name. This video (posted here months ago) explains this topic very well.

For Emacs's help system (Info), I recommend to try C-h R info.

[–] nmtake@lemm.ee 1 points 1 month ago* (last edited 1 month ago)

Here is the screenshot:

Here's the screenshot.

I think it's worth to try if you just want to play the song from minibuffer.

[–] nmtake@lemm.ee 29 points 2 months ago

Please note that many users of FOSS are also developers or contributors. Who wants to report a bug or send a patch if the community is worse?

[–] nmtake@lemm.ee 11 points 2 months ago (2 children)
  1. Gimp to batch edit pictures in a script (I know about ImageMagick but still)

It seems to exist: https://www.gimp.org/tutorials/Basic_Batch/

[–] nmtake@lemm.ee 2 points 2 months ago

Bash should be fine. On typical Bash installation I think this will work (please try to understand each command line before you actually try):

$ cp ~/.bashrc ~/.bashrc.bak
$ cp ~/.bash_history ~/.bash_history.bak
$ printf 'set +o history' >> ~/.bashrc
$ printf "sudo apt update\nsudo apt upgrade\n" > .bash_history
$ (Press Ctrl+D to logout)

For the next bash session you can refer only the two commands from the history with Up/Down/C-p/C-n.

[–] nmtake@lemm.ee 4 points 2 months ago (2 children)

Long ago I made such restricted shell with filtering the shell command history file then disabling command history logging. With some shell scripting, I think you can get more sophisticated version. What shell are you using? (Bash, Fish, Zsh, etc.)

view more: ‹ prev next ›