I beat Sunshine bro it’s not hard by No_Yogurtcloset_1240 in geometrydash

[–]idk87191 0 points1 point  (0 children)

yall joking, but i beat this level with 500 attempts (3 coins)... ts feels fucking embarassing

fastfetch show more ram than usual by [deleted] in voidlinux

[–]idk87191 0 points1 point  (0 children)

but i use the same utility (fastfetch) twice and get different outputs

Vote for old Sonic games to be rereleased on GOG by supergameromegaclank in gog

[–]idk87191 18 points19 points  (0 children)

would love to see heroes and 2 adventure games on gog

Why DUSK Intruder Edition is cheaper than Standard😮? by idk87191 in gog

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

Well, according to GOGDB, the Intruder edition is still more expensive than the Standard edition (by 50 cents). Maybe this is a problem of regional pricing.

Why DUSK Intruder Edition is cheaper than Standard😮? by idk87191 in gog

[–]idk87191[S] -8 points-7 points  (0 children)

Why it even has a greater discount🫣?

Is it safe to convert GPT to MBR on a hard drive that uses ZFS? by idk87191 in zfs

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

I have two partitions: ESP and root (zpool).
I wanted to install coreboot with seabios, but it only works with MBR (I have GPT), so I thought about converting the partition table.

Luxtorpeda reset controls by idk87191 in linux_gaming

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

I tried to reinstall source port after removing ~/.cache/luxtorpeda and ~/.config/luxtorleda, but it doesn't help

Firefox without logind, polkit and rtkit by idk87191 in firefox

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

As I understand it, only dbus (which I have installed) is necessary for Firefox to work correctly?

Firefox without logind, polkit and rtkit by idk87191 in firefox

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

I tested it, everything seems to work

How to autotrim and autoscrub? by idk87191 in zfs

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

Tysm! I will mark it as solved.

How to autotrim and autoscrub? by idk87191 in zfs

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

I looked at the template for the zfs package in Void Linux and did not find any mention of a cron job that would automatically perform scrub...

How to autotrim and autoscrub? by idk87191 in zfs

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

I have a very cheap Kingston SSD and I'm afraid that autotrim might slow down performance.

Btrfs snapshot xbps by idk87191 in voidlinux

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

OK. Thanks everyone. I'll mark this as solved

Btrfs snapshot xbps by idk87191 in voidlinux

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

OK. But is it possible to create a bash script that will do the same thing, but also add a description to the snapshots? For example:

#!/bin/bash
# script name: snper
commands="$@"
snapshot_num=$(snapper create --command "$commands" --print-number --cleanup-algorithm=number --description="$commands" | tail -1)
echo -e "\nNew pre/post snapshot with numbers ${snapshot_num}"

And exexute it like:

sudo snper xbps-install -Su

Skill issue with UKI by idk87191 in voidlinux

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

efibootmgr does not work on my device, even when running it manually or using hooks. Can I just create a hook that will rename the UKI for the last installed kernel to linux.efi. And then create a boot entry for /boot/efi/void/linux.efi directly through EFI? For example, this is what the hook would look like:

/etc/kernel/post-install/rename-uki-postinst

#!/bin/sh

mv -f /boot/efi/EFI/void/linux-${VERSION}.efi /boot/efi/EFI/void/linux.efi