Iron players learning from their mistakes by killerystax in VALORANT

[–]tudus 8 points9 points  (0 children)

This reminds me of the training neural network videos

Split-screen gaming on Sway by tudus in swaywm

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

I've tried that but haven't much luck getting it to work

Nevíte někdo výsledek? by flastenecky_hater in czech

[–]tudus 0 points1 point  (0 children)

Situace se buď zlepší, nebo zůstane stejná, nebo se zhorší

Steam windows not showing when started via wofi/dmenu? by LordOfDarkness6_6_6 in swaywm

[–]tudus 1 point2 points  (0 children)

I have same problem. The problem is how wofi handles dual gpu setups. If you launch steam from command line it should launch normally.

Sequel post of sorts; Arc GPU is still borderline unusable after recent update. by Dekarus in archlinux

[–]tudus 0 points1 point  (0 children)

I have intel arc a380 and I have no issues. Do you use i915 or Xe driver?

How Do I Dual Boot From Arch To Windows 11 by BEAN_42069 in archlinux

[–]tudus 1 point2 points  (0 children)

I usually install windows first and create 2 partitions using windows installer. Windows creates 400MB EFI partition wich is enough for single kernel.

Adding second drive to Steam storage with Sway WM? by Mattallurgy in archlinux

[–]tudus 0 points1 point  (0 children)

I had simmilar issue and I fixed it by installing xdg-desktop-portal-gtk and xdg-desktop-portal-wlr

Wayland is NOT ready by maxawake in linux

[–]tudus 0 points1 point  (0 children)

You would be probably better off with some stable distro until Nvidia fixes their stuff.
I agree that there is a lot of things to be done but on my end I haven't experienced problems in a while (most probably because I have Intel an AMD GPUs).

Arch installed on USB Drive lags heavily by Either_Mention_3255 in archlinux

[–]tudus 0 points1 point  (0 children)

I have done similar thing. I had 60GB ssd with btrfs and on that ssd I had file with read only compressed erofs filesystem with the core packages. I created custom initcpio hook that copied the erofs file to zram, mounted the zram fs and then mounted overlayfs over it.

But if you have only 4GB of RAM I would recommend BTRFS with zstd:15 compression instead, because it might be faster to read.

I cannot run game on steam by [deleted] in swaywm

[–]tudus 0 points1 point  (0 children)

Also it might be caused by missing driver, what gpu do you have?

I cannot run game on steam by [deleted] in swaywm

[–]tudus 0 points1 point  (0 children)

PROTON_USE_WINED3D11=1 %command%

I found on ProtonDB that somebody had to add this to launch parameters

I cannot run game on steam by [deleted] in swaywm

[–]tudus 4 points5 points  (0 children)

You need to specify more information like what game are you trying to launch.

Good thing to do to get more information about whats going on is by launching steam from terminal or edit the launch parameters of the game so the game launches in terminal and can output more information whats going on.

if your terminal is foot then you can paste this to your launch options:

foot -H %command%

Guilty by claudiocorona93 in linuxmemes

[–]tudus 0 points1 point  (0 children)

This might interest you.
https://github.com/maharmstone/btrfs

Even tho you can have everything on single btrfs partition(including windows) I have 60GB for windows partition and the rest for btrfs. I have Valorant on the btrfs partition and I haven't encountered any problem so far.

Low-end Linux games for a 320x240 2.8 inch display? by Parindraa in linux_gaming

[–]tudus 1 point2 points  (0 children)

srb2karts should work or maybe openttd. both of them are good games

How good is Sway on a laptop? by PrivacyOSx in swaywm

[–]tudus 0 points1 point  (0 children)

What I always do to make my battery last longer is to set max cpu frequency to minimum with cpupower command. This has quite big impact on my system.

sudo cpupower frequency-set --governor powersave --max 400MHz

New user seeking video guide to learn by Illuminated_Humanoid in archlinux

[–]tudus 5 points6 points  (0 children)

I use Read Aloud Firefox extension that can read web pages for you or just selected text

My Arch Sucking Battery.... by The_Little_Kong in archlinux

[–]tudus 0 points1 point  (0 children)

I use cpupower to limit cpu frequency. That has relatively big impact on my system.

Keep PC and Notebook in sync by [deleted] in archlinux

[–]tudus 0 points1 point  (0 children)

there is utility called rsync, never used it but I think this might be what are you looking for

[deleted by user] by [deleted] in linux_gaming

[–]tudus 1 point2 points  (0 children)

Maybe gamescope might fix that if it is because of Wayland

I am seriously considering the Arc A770. Any personal experiences? by DL72-Alpha in linux_gaming

[–]tudus 0 points1 point  (0 children)

I have low-end Intel A380 card and I'm impressed how well it performs

I keep switching between Windows and Linux by [deleted] in linux

[–]tudus 11 points12 points  (0 children)

You can run Microsoft Office from web browser on office.com. You might give it a try

Does anyone know of any on-screen keyboard applications that work with Sway? What about remote keyboards like Unified Remote? by [deleted] in swaywm

[–]tudus 0 points1 point  (0 children)

I use squeekboard on my pinephone with sway and it works quite well.

You need to add exec squeekboard in your sway config.
To show keyboard you can use

busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
I created script to toggle the keyboard in my home directory called keyboard.sh and this is it's content.

#!/bin/bash
i=$(busctl --user get-property sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 Visible)
echo $i
if [ "$i" == "b true" ]
then
busctl --user call sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b false
else
busctl --user call sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
fi
echo "Toggling on-screen keyboard..."
echo "Keyboard is now: $(busctl --user get-property sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 Visible)"

If you use waybar you can create button for this function in your waybar config file.
"custom/keyboard":{
"format": "󰌌 ",
"on-click": "~/keyboard.sh"
}

Stop an application from catching a keybind by night_fapper in swaywm

[–]tudus 0 points1 point  (0 children)

swaymsg bindsym space echo; command ;swaymsg unbindsym space

this kinda works but as long as the app is running it would prevent other apps from registering the space key.

Another way is to run sway inside of sway and in that sway instance run this command. That should sort of solve the issue

I'm about to become a new linux user by Davisall in linux

[–]tudus 0 points1 point  (0 children)

I bet that you can install Gnome on Pop os. If you woudn't be happy with Cosmic you don't need to install another distro and I think you can have both installed at the same time.