Samueru

joined 10 months ago
[–] Samueru@lemmy.ml 1 points 1 week ago* (last edited 1 week ago) (1 children)

It pulls the latest chromium from googleapis.com so it can do everything.

[–] Samueru@lemmy.ml 2 points 1 week ago* (last edited 1 week ago) (3 children)

This is already done automatically.

AM puts the .desktop files in /usr/local/share/applications

AppMan puts them in ${XDG_DATA_HOME:-~/.local/share}applications

They also get symlinked in PATH, that is you can launch yt-dlp by typing yt-dlp on the terminal as if you had installed it with your distro package manager.

[–] Samueru@lemmy.ml 1 points 1 week ago

I wonder, is there a tool that lets me script installs?

I’ll want to check if application exists, and if so, update, otherwise, install. That kind of thing.

https://github.com/ivan-hc/AM

Use AppMan to install them in HOME.

[–] Samueru@lemmy.ml 1 points 1 week ago (6 children)

Check this out: https://github.com/ivan-hc/AM

Use appman and set the install directory to ~/Apps and now you will be able to install appimages/binaries in the ~/Apps dir using a package manager that keeps them up to date and that you can move to any other distro, I have all of this:

Although more recently for binaries I've been using this instead, which pulls from a massive repo of static binaries, though note that dbin needs its own separate directory in HOME to install binaries (you can't use ~/Apps that is).

[–] Samueru@lemmy.ml 13 points 3 weeks ago

I'm pretty sure sbin originally meant static binaries and not system binaries lol

[–] Samueru@lemmy.ml 3 points 1 month ago

posix sh + awk for manipulating data?

[–] Samueru@lemmy.ml 4 points 1 month 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 1 month ago

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

[–] Samueru@lemmy.ml 5 points 1 month ago (2 children)
[–] Samueru@lemmy.ml 2 points 1 month 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 1 month 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 months 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.

 
4
submitted 10 months ago* (last edited 9 months ago) by Samueru@lemmy.ml to c/archlinux@lemmy.ml
 

I have this command on my i3wm configuration, which extends the 3 displays that I have into a single one for games.

bindsym $mod+Shift+k exec "xrandr --setmonitor extended auto DP-1,DP-2,DP-3"

The only issue that I have is, once I'm done, how do I revert back to having the displays individually? This has been driving me crazy.

Searching on internet all that I've managed to find is using xrandr -s 0, which actually just turns off my other displays.

And what is worse is that if I then manually turn the displays back on, THEY ARE STILL EXTENDED "xrandr -s 0" does not even reset that lol.

So far what I have to do to revert the changes is to log out of my current session.

SOLUTION: THE COMMAND IS: xrandr --delmonitor extended

 

I'm trying to migrate from lightdm to just using startx to start my i3 session.

First I had issues with kdeconnect working which were fixed by replacing exec i3 with exec dbus-launch --exit-with-session i3 in the xinitrc.

Now even though the apps works it is not following the system theme, I checked qt5ct and it is telling me that QT_QPA_PLATFORMTHEME is not set to qt5ct.

But I do have export QT_QPA_PLATFORMTHEME=qt5ct on my ~/.profile it seems the file is not being read but I have no idea on how to fix it.

view more: next ›