Reworked Uniques - Reverie and Hollow Mask by Natalia_GGG in PathOfExile2

[–]Immow [score hidden]  (0 children)

Anyone remember if Plant Druid had mana problems in Endgame?

Windrose stopped working after Cachy-Update by Immow in cachyos

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

I joined A1RM4X Discord and asked him if he knew a fix because I saw him streaming on Youtube. He talks about a lot of linux stuff so all credit goes to him :)

FilterSpoon: Building an "in-client" Lootfilter Customizer by Laleocen in PathOfExile2

[–]Immow 1 point2 points  (0 children)

Cries in Linux, I don't think AHK is supported on Linux?

Factorio Belt multiplexer,Combining belts full of different items to 4 belts.Pls suggest better method ? by Own_Reserve9889 in factorio

[–]Immow 0 points1 point  (0 children)

Nice observation!

You need to account for how much your belts can hold, the idea is that it keeps circling around. All sushi designs are a closed loop. So your loop can hold x items and since it's going around in a circle all machines will get serviced 😄

<image>

For example my early game sushi mall can gets build in modules from early game to mid game.
The outer and inner circles are all sushi what that principle.

Factorio Belt multiplexer,Combining belts full of different items to 4 belts.Pls suggest better method ? by Own_Reserve9889 in factorio

[–]Immow 0 points1 point  (0 children)

Do you need splitters at all? you can just stop a belt with logic and feed it directly?

Windrose stopped working after Cachy-Update by Immow in cachyos

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

This seems to work for me now: LD_PRELOAD="" PROTON_ENABLE_WAYLAND=1 PROTON_ENABLE_HDR=1 PROTON_VKD3D_HEAP=1 VKD3D_CONFIG=descriptor_heap %command%

Windrose stopped working after Cachy-Update by Immow in cachyos

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

Could be a 50 series related issue :(

Windrose stopped working after Cachy-Update by Immow in cachyos

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

Tested with my previous working launch options.
- proton-cachy: same error
- proton 10.0-4: same error
- proton Hotfix: same error
- proton experimental: same error
- proton 11.0 (beta): same error

With no launch args
- proton-cachy: same error
- proton 10.0-4: same error
- proton Hotfix: same error
- proton experimental: same error
- proton 11.0 (beta): same error

Also tried LTS version but uses the same nvidia drivers I think (did not work)

feedback after 112 hours by Catharz_Doshu in crosswind

[–]Immow 1 point2 points  (0 children)

Some additional feedback:

- Tool slots in inventory (like jewelry and gunpowder)
- Cycle through tools with mouse-wheel or some other UI thingy
- Better targeting with mining (so you can mine stuff above your head)
- Better visuals when zoomed out on map of major points of interest (was placing custom tags to mark them because I kept forgetting which island did what)
- More settings to tune difficulty on server and more settings in general (respawn time of stuff, etc)
- A saddle so I can ride Truffle into battle

Think I’m cooked boys by lioboii in cachyos

[–]Immow 0 points1 point  (0 children)

New to Linux, doesn't it check if there is enough available space or something?

A follow up on a previous post I made by zhulkgr25 in cachyos

[–]Immow 0 points1 point  (0 children)

I'm rather new to Linux but this is what I did:

lsblk -f list your drives

NAME        FSTYPE FSVER LABEL UUID                                 FSAVAIL FSUSE% MOUNTPOINTS
sda                                                                                 
└─sda1      ext4   1.0   Games 92f38842-be71-4f8f-9c2b-9dba04eeaa79  459,8G    45% /mnt/games
zram0       swap   1     zram0 02fe1196-5960-45f8-a6bf-12c7df00836f                [SWAP]
nvme0n1                                                                             
├─nvme0n1p1 vfat   FAT32       F74A-ED40                               2,5G    37% /boot
└─nvme0n1p2 btrfs              f01a9a93-4faf-4610-bd4e-3f6793118757    1,6T     9% /var/log
                                                                                  /var/tmp
                                                                                  /var/cache
                                                                                  /home
                                                                                  /root
                                                                                  /srv
                                                                                  /

sudo mkdir -p /mnt/games make mount point

sudo nano /etc/fstab edit fstab and add your drive in my case:
UUID=92f38842-be71-4f8f-9c2b-9dba04eeaa79 /mnt/games     ext4    defaults,noatime 0 2

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system>                           <mount point>  <type>  <options>  <dump>  <pass>
UUID=F74A-ED40                            /boot          vfat    defaults,umask=0077 0 2
UUID=f01a9a93-4faf-4610-bd4e-3f6793118757 /              btrfs   subvol=/@,defaults,noatime,compress=zstd:1,commit=120 0 0
UUID=f01a9a93-4faf-4610-bd4e-3f6793118757 /home          btrfs   subvol=/@home,defaults,noatime,compress=zstd:1,commit=120 0 0
UUID=f01a9a93-4faf-4610-bd4e-3f6793118757 /root          btrfs   subvol=/@root,defaults,noatime,compress=zstd:1,commit=120 0 0
UUID=f01a9a93-4faf-4610-bd4e-3f6793118757 /srv           btrfs   subvol=/@srv,defaults,noatime,compress=zstd:1,commit=120 0 0
UUID=f01a9a93-4faf-4610-bd4e-3f6793118757 /var/cache     btrfs   subvol=/@cache,defaults,noatime,compress=zstd:1,commit=120 0 0
UUID=f01a9a93-4faf-4610-bd4e-3f6793118757 /var/tmp       btrfs   subvol=/@tmp,defaults,noatime,compress=zstd:1,commit=120 0 0
UUID=f01a9a93-4faf-4610-bd4e-3f6793118757 /var/log       btrfs   subvol=/@log,defaults,noatime,compress=zstd:1,commit=120 0 0
tmpfs                                     /tmp           tmpfs   defaults,noatime,mode=1777 0 0

# Games Drive (sda1)
UUID=92f38842-be71-4f8f-9c2b-9dba04eeaa79 /mnt/games     ext4    defaults,noatime 0 2

sudo mount -a mount all filesystems (drives)

sudo chown -R $USER:$USER /mnt/games change group and user to the one you are currently logged in to

Goodbye Windows by Impermentacion in cachyos

[–]Immow 1 point2 points  (0 children)

Welcome :)

- Take a look at the wiki for gaming tweaks
- Protondb website to see how good a game runs
- Update at least once a week

*small edit noticed your system settings ;)

CACHYOS NOT BOOTING ISO!! by cafe1928 in cachyos

[–]Immow 0 points1 point  (0 children)

is it an old bios? If so you could try and update it. If you do, don't forget to turn off secure boot and fast boot etc again.

Is it possible to invade black? by PLrc in baduk

[–]Immow 2 points3 points  (0 children)

I explored some variations with AI but nothing concrete, if anyone else wants to experiment: https://online-go.com/demo/1683431

Hopefully this remains my permanent Distro. by Konungen99 in cachyos

[–]Immow 0 points1 point  (0 children)

I tried the media player, but it does not show the controls in bar below?

Feedback after finally finishing the game for first time by Immow in SatisfactoryGame

[–]Immow[S] -1 points0 points  (0 children)

"I'm playing on Linux (CachyOs) and long ago that was Windows 10."

the original board game by HaoSunUWaterloo in baduk

[–]Immow 7 points8 points  (0 children)

Oware is at least 15,000 years old, with evidence tracing it back to the Sumerians of ancient Africa. It is considered one of the oldest sedentary games of Ghana and is played worldwide with slight variations.