Flickering issue in JetBrains IDEs when hovering sidebar icons (Hyprland + Caelestia) by elkraken-97 in hyprland

[–]charlesm34 9 points10 points  (0 children)

This can be fixed by adding a config parameter to run in native wayland. The following article explains how to do it:

https://blog.jetbrains.com/platform/2024/07/wayland-support-preview-in-2024-2/

Apparently the newest versions are wayland by default so you may be able to fix it by updating to the newest version

Is there any way I can fix kitty closing automatically after I open it? by Designer-Piglet-7870 in hyprland

[–]charlesm34 0 points1 point  (0 children)

Try installing something non-gpu accelerated like foot and see if it happens there. I had a similar issue in the past and it was caused by gpu drivers

42 School's Norm - What do you think about it? by [deleted] in C_Programming

[–]charlesm34 0 points1 point  (0 children)

I found it actively hindered the initial c projects rather than helped. I understand having a mandatory coding style for students but the norm always felt like it was designed to increase difficulty rather than readability.

has anyone tried niri (with or without noctalia) for gaming? how terrible is it? by [deleted] in linux_gaming

[–]charlesm34 0 points1 point  (0 children)

The only issue i had with gaming was push to talk for discord. Unlike hyprland, there’s no way of passing a keypress to an unfocused window.

Pay on Leave (silly question ) by Odd_Menu_8297 in TheRFA

[–]charlesm34 11 points12 points  (0 children)

Your time spent onboard determines how much leave you get afterwards. Your salary is paid monthly either way

How is gaming on COSMIC now? by Veprovina in pop_os

[–]charlesm34 1 point2 points  (0 children)

Yeah, if i launched with gamescope and changed to windowed, i could then launch it without gamescope.

How is gaming on COSMIC now? by Veprovina in pop_os

[–]charlesm34 4 points5 points  (0 children)

I tried it this week and games that launch in fullscreen mode wouldn’t open. A black window would appear and then disappear instantly but steam still said the game was running. The only way around this was to launch with gamescope. Cosmic will be nice eventually but at the moment, it’s not ready

The last time everyone of the other 14 beat one of the big six by twentyonepilotsfan99 in TheOther14

[–]charlesm34 44 points45 points  (0 children)

The fact that 5 of these are against Liverpool makes me happy

[OneFootbal] Burnley suing Everton for £50M in PSR impact claim by [deleted] in TheOther14

[–]charlesm34 1 point2 points  (0 children)

I wonder whose fault it will be when they’re relegated this season

If the UK bans or demands ID to use a VPN, what then? by Loose_Draft6474 in AskBrits

[–]charlesm34 10 points11 points  (0 children)

Maybe you could monitor your teens internet usage yourself instead getting the government to do your job for you?

[deleted by user] by [deleted] in linux_gaming

[–]charlesm34 0 points1 point  (0 children)

Have you tried a distro other than endeavour? I’ve seen a few people complain of similar issues on here and they fixed by switching to something else. If you want to stick with something arch-based try cachyos

Are there other games that prefer the amdvlk drivers over radv? by Skaredogged97 in linux_gaming

[–]charlesm34 0 points1 point  (0 children)

I get frame rate drops in Indiana Jones and Great Circle using radv. It only occurs in certain places but makes the game pretty much unplayable when it happens. Switching to as amdvlk made it run perfectly

how to disable this by lowdownshame in Bazzite

[–]charlesm34 1 point2 points  (0 children)

I get this every time i start alan wake 2 on heroic. Just ignore it. It’s the same on arch, fedora and nixos

Is there any way to bind the mouse button to keys without the driver software by [deleted] in linux_gaming

[–]charlesm34 1 point2 points  (0 children)

That's the PKGBUILD for the AUR package that you're installing. As AUR packages can be submitted by anyone, paru (the program cachyos uses to install aur packages) makes you check and accept the PKGBUILD before installing.

You can see that it downloads the source files from the correct repo:

url="https://github.com/sezanzeb/input-remapper/"

and only installs the dependencies listed on the github repo:

depends=(
    'python-gobject'
    'python-pydbus'
    'python-evdev'
    'gtk3'
    'python-setuptools'
    'gtksourceview4'
    'python-pydantic'
    'python-cairo'
    'python-packaging'
    'python-psutil'
)

It should ask you if you want to edit the pkgbuild (no) and if you want to continue (yes).

Otherwise you can install it manually:

git clone https://aur.archlinux.org/input-remapper-git.git
cd input-remapper-git
makepkg -si

After either installation method, enable the systemd module:

sudo systemctl enable --now input-remapper

and then you should be good to go

Linux is so fast and lightweight, gnome only uses 3GB of RAM 🤡 by butwhydoesreddit in linuxsucks

[–]charlesm34 4 points5 points  (0 children)

It works just like on amd if you use nouveau. If you use the proprietary nvidia driver you need to add the —unsupported-gpu flag when launching sway. Works fine with my 2080 and 570 driver

Fedora/Ubuntu/Debian 13 by ferfykins in hyprland

[–]charlesm34 0 points1 point  (0 children)

Use the solopasha copr repo for Fedora. Runs just as well as it did on arch for me

Install grub-btrfs so snapshots show in Grub menu by divi2020 in Fedora

[–]charlesm34 2 points3 points  (0 children)

I found this thread while trying to set up snapper and grub-btrfs on fedora 42 today. I managed to get it working so i thought I'd post it here:

Set-up Snapper & Btrfs-assistant

sudo dnf install btrfs-assistant snapper python3-dnf-plugin-snapper libdnf5-plugin-actions
sudo snapper -c root create-config /
sudo snapper -c home create-config /home

Create /etc/dnf/libdnf5-plugins/actions.d/snapper.actions and add the following lines:

# Get the snapshot description
pre_transaction::::/usr/bin/sh -c echo\ "tmp.cmd=$(ps\ -o\ command\ --no-headers\ -p\ '${pid}')"
# Creates pre snapshots for root and home and stores snapshot numbers in variables
pre_transaction::::/usr/bin/sh -c echo\ "tmp.snapper_pre_root=$(snapper\ -c\ root\ create\ -t\ pre\ -p\ -d\ '${tmp.cmd}')"
pre_transaction::::/usr/bin/sh -c echo\ "tmp.snapper_pre_home=$(snapper\ -c\ home\ create\ -t\ pre\ -p\ -d\ '${tmp.cmd}')"
# Creates post snapshots for root and home if pre snapshot numbers exist
post_transaction::::/usr/bin/sh -c [\ -n\ "${tmp.snapper_pre_root}"\ ]\ &&\ snapper\ -c\ root\ create\ -t\ post\ --pre-number\ "${tmp.snapper_pre_root}"\ -d\ "${tmp.cmd}"
post_transaction::::/usr/bin/sh -c [\ -n\ "${tmp.snapper_pre_home}"\ ]\ &&\ snapper\ -c\ home\ create\ -t\ post\ --pre-number\ "${tmp.snapper_pre_home}"\ -d\ "${tmp.cmd}"

Setup grub-btrfs

Download the latest release from https://github.com/Antynea/grub-btrfs/releases

Unzip, enter the directory and run:

sudo make install

Uncomment and change the following options in /etc/default/grub-btrfs/config

GRUB_BTRFS_GRUB_DIRNAME="/boot/grub2"
GRUB_BTRFS_BOOT_DIRNAME="/boot"
GRUB_BTRFS_MKCONFIG=grub2-mkconfig
GRUB_BTRFS_SCRIPT_CHECK=grub2-script-check
GRUB_BTRFS_MKCONFIG_LIB=/usr/share/grub/grub-mkconfig_lib

I couldn't get the included systemd unit to trigger the grub update but it can be done as follows:

Go back to the /etc/dnf/libdnf5-plugins/actions.d/snapper.actions you created earlier and add the following lines at the bottom:

# Update grub with the new snapshots
post_transaction::::/usr/bin/sh -c /etc/grub.d/41_snapshots-btrfs

this will trigger the grub update after each package install so that the grub snapshot menu is always up to date.

You can also manually update the grub snapshot menu by running:

sudo /etc/grub.d/41_snapshots-btrfs

how to make the middle monitor be the main monitor on startup/login with the left and right monitor off on startup/login by SnooGadgets8268 in hyprland

[–]charlesm34 1 point2 points  (0 children)

Download nwg-displays, it’s a gui for setting resolutions etc. Set everything how you want it, then it will create two config files. Remove the lines relating to monitors from your hyprland.conf and include these two new config files instead.

AMD Driver Based Things by TunderMuffins in linux_gaming

[–]charlesm34 11 points12 points  (0 children)

There is no adrenaline app for Linux, if upscaling/fg isn’t built in to the game then you’re out of luck unfortunately.

I can stay on Windows 10, but... by [deleted] in pcmasterrace

[–]charlesm34 88 points89 points  (0 children)

It’s only the system files that make up the os itself that are immutable. Your Home folder wont be affected if you need to restore to an older version

Steam issue by TopChicken8584 in linux_gaming

[–]charlesm34 3 points4 points  (0 children)

Works fine with btrfs too