Samueru

joined 9 months ago
[–] Samueru@lemmy.ml 4 points 3 days ago (1 children)

It makes me mad to see the current state sway is in, I even bought an AMD GPU for nothing.

[–] Samueru@lemmy.ml 1 points 2 weeks ago

Test adding the preferences page to "excluded URLs" in the settings of vimium.

[–] Samueru@lemmy.ml 5 points 2 weeks ago (2 children)
[–] Samueru@lemmy.ml 5 points 2 weeks ago
[–] Samueru@lemmy.ml 2 points 2 weeks ago (1 children)

I really don't know lol

Increasing the max_map_count is needed for some Steam games, iirc Arch is now dong this by default.

iirc the dirty_bytes settings prevent the system from hanging if there is too much disk IO

And setting transparent_hugepages to madvise was something I did when archlinux had this bug in the kernel: https://old.reddit.com/r/archlinux/comments/1atueo0/higher_ram_usage_since_kernel_67_and_the_solution/

It was eventually fixed but I later ran into the issue again and I decided to keep it on madvise.

[–] Samueru@lemmy.ml 2 points 2 weeks ago (3 children)

Here is what I ended up using for my sysctl conf, iirc I got some of these from popos default config:

vm.swappiness = 180
vm.page-cluster = 0
vm.watermark_boost_factor = 0
vm.watermark_scale_factor = 125
vm.dirty_bytes = 268435456
vm.dirty_background_bytes = 134217728
vm.max_map_count = 2147483642
vm.dirtytime_expire_seconds = 1800
vm.transparent_hugepages = madvise
[–] Samueru@lemmy.ml 1 points 2 weeks ago (1 children)

nvm I just noticed that the issue is that I had the gcompat package installed in alpine, which fixes that issue you just had, I don't know if chimera has something similar to it.

[–] Samueru@lemmy.ml 1 points 2 weeks ago

That's interesting that it doesn't work, iirc the biggest difference of chimera is that it uses musl like alpine does.

Can you extract the appimage with --appimage-extract flag and run the AppRun that's inside of it directly? Or that also fails?

Isn't lite-xl in your distro repo?

[–] Samueru@lemmy.ml 2 points 2 weeks ago (1 children)

Manjaro: Lots of criticism from others, ironically ran 2 years without major issues. But I wanted to switch to btrfs and EOS was hyped up to be a better version of a simple Arch installation.

I had a similar story, in fact EOS has a problem that they use dracut by default and is set to overwrite the kernel parameters every time you update the system lol.

I'm very sorry you had to deal with some users from here btw, specially the nixos people.

[–] Samueru@lemmy.ml 3 points 2 weeks ago (5 children)
[–] Samueru@lemmy.ml 2 points 2 weeks ago (4 children)

I use lite-xl, it has been very good, but I'm not a Go developer though.

They also release an appimage and I just did a quick test on a alpine container and it works, so it should work on Chimera as well.

[–] Samueru@lemmy.ml 5 points 3 weeks ago (1 children)

Venezuela has been a target of US diplomatic aggression since they nationalized their oil.

Since 1976? Venezuela's oil was nationalized by Rafael Caldera in that year.

And yes that Rafael Caldera, the guy Chavez tried to overthrow lmao.

 

Here is the script, which is a hack that I use with i3wm, I already converted most of it to a single line and it still works:

#!/usr/bin/env bash

is-leaf-node() { i3-msg -t get_tree | jq 'recurse(.nodes[]?, .floating_nodes[]?) | select(.type == "con" or .type == "floating_con") | select(.focused == true) | .nodes == []';}; parent-type() { i3-msg -t get_tree | jq -r 'recurse(.nodes[]?, .floating_nodes[]?) | select(.nodes[]?.focused == true) | .type' ;}; if [ "$(is-leaf-node)" == "true" ]; then i3-msg focus parent, focus parent; else i3-msg focus child, focus child; fi

Here is where I'm stuck:

The script needs the #!/usr/bin/env bash to work, it is the only script that I have that needs it.

Changing it to #!/usr/bin/env bash; does not work, it has have a second line for it to work.

view more: next ›