Latest Comments by Xpander
Rocket League to get a fully cross-platform friends system next week, along with the next season
13 Feb 2019 at 10:43 am UTC
13 Feb 2019 at 10:43 am UTC
How console players type in the chat? Slowly i guess with some onscreen keyboard type of thingy?
Looks like Easy Anti-Cheat strikes again with Steam Play, Paladins is no longer playable on Linux
9 Feb 2019 at 1:35 pm UTC Likes: 3
9 Feb 2019 at 1:35 pm UTC Likes: 3
Quoting: kalinWho cares. That game is dumb as hell. I try it to check how well steamplay work and believe me that was the most boring experience.Yeah well thats your opinion. While it wasn't anything brilliant it was good fun and not boring at all for me. Quick to get in, have like half an hour to hour of fun and then close it.. simple. free, ran amazingly performance wise and was fun.
GreenWithEnvy, an impressive tool for overclocking NVIDIA GPUs
6 Feb 2019 at 6:11 pm UTC
6 Feb 2019 at 6:11 pm UTC
Quoting: Wernerhmm for me it doesn't work, it just shows empty ui, could it be that it doesn't support Nvidia 418.30works for me with 418.30
Quoting: pbI have a laptop with 1060 gpu set at discrete, I wonder if I could downpower the card with this tool to avoid the fan noise during normal usage (non-gaming). Does it make the changes in real time or does it require reboot?real time. Only X restart is needed if you save the coolbits into xorg
Unity 2018.3.4 is out with some important fixes for Linux games
5 Feb 2019 at 7:45 am UTC
5 Feb 2019 at 7:45 am UTC
Quoting: bingusWeird. I've got a Nvidia GPU but have never seen that screen corruption issue before. Nice to see it fixed though.if you are using older drivers then its fine. Afaik older drivers had workaround for unity bugs 415+ ones don't
A quick run over some details from the recent ProtonDB data
4 Feb 2019 at 9:07 am UTC
Wayland is another question though. Not being able to use Dual-monitor is the biggest issue for me. Let's see if that can be fixed in X at all or if it will work in Wayland some day.
4 Feb 2019 at 9:07 am UTC
Quoting: ShmerlVulkan needs something extra for making it to work? I didn't have issues with Vulkan and Freesync on nvidia.Quoting: CreakFreeSync/VRR should arrive with Linux 5.0 (in a few weeks)Is anyone working on Vulkan and Wayland support for it?
Wayland is another question though. Not being able to use Dual-monitor is the biggest issue for me. Let's see if that can be fixed in X at all or if it will work in Wayland some day.
A quick run over some details from the recent ProtonDB data
3 Feb 2019 at 6:20 pm UTC Likes: 2
3 Feb 2019 at 6:20 pm UTC Likes: 2
My reports (some 2 months old because i have been slacking in January):
Also yeah i think Platinum should be given only when you don't have to touch anything, just hit play.
About performance, its hard to compare to windows, if you dont use windows, so there i think platinum is when it works with good fps enough for you on your hardware.
Also yeah i think Platinum should be given only when you don't have to touch anything, just hit play.
About performance, its hard to compare to windows, if you dont use windows, so there i think platinum is when it works with good fps enough for you on your hardware.
NVIDIA have put out a new Linux beta driver with support for 'G-SYNC Compatible monitors'
31 Jan 2019 at 12:04 pm UTC
I find my current one easy enough specially if its binded to my keyboard macro key, i can switch it even while gaming, it will turn it off once second monitor comes online and press same button again and it turns freesync on when second monitor will be disabled :)
31 Jan 2019 at 12:04 pm UTC
Quoting: TheRiddickMaybe just make a environmental variable so that when its 1 or true it just disables everything but primary screen and enables gsync for you etc... Like ItJustWorksKinda = 1, then it switches off secondary displays and enables gsync, do it via alt-f2.same goal with different code pretty much :)
I find my current one easy enough specially if its binded to my keyboard macro key, i can switch it even while gaming, it will turn it off once second monitor comes online and press same button again and it turns freesync on when second monitor will be disabled :)
NVIDIA have put out a new Linux beta driver with support for 'G-SYNC Compatible monitors'
31 Jan 2019 at 11:36 am UTC
31 Jan 2019 at 11:36 am UTC
Quoting: TheRiddickYes seems better to use nvidia-settings for switching modes, I was thinking of doing that.Well since everything is enabled from nvidia settings and i pass {AllowGSYNCCompatible=On} for non compatible displays on my script, it will be automatically enabled if i disable all other monitors. I can see it with the green G-SYNC appearing on the screen.
How do you determine when to run freesync or not? are you simply turning it on in your monitor settings when needed? that would be painful for me to do! I'd just use a global env variable and flip it on and off when needed.
PS. I'm a terrible coder, basically whenever I try to do coding it comes out looking like some caveman wall paintings compared to the next persons..lol
NVIDIA have put out a new Linux beta driver with support for 'G-SYNC Compatible monitors'
31 Jan 2019 at 11:00 am UTC Likes: 1
But yeah it really sucks that you cant use multimonitor with it. I hope they find a way to implement something in X soonish
31 Jan 2019 at 11:00 am UTC Likes: 1
Quoting: TheRiddickmy script :)Monitor off:
xrandr --output HDMI-0 --off && sleep 1 && xrandr --output DP-4 --auto && sleep 3 && nvidia-settings --load-config-only &
Monitor on:
xrandr --output HDMI-0 --auto --rotate left --right-of DP-4 && sleep 3 && nvidia-settings --load-config-only &
# Script to switch Freesync
# Check if display dpy:4 is enabled
check=$(nvidia-settings -q dpys | grep dpy:4 | grep enabled)
# Switch display config
if [ -z "$check" ]; then
# If enabled - notify and disable freesync
nvidia-settings --assign CurrentMetaMode="DP-4: 2560x1440_144 +0+0, DP-1: null, DP-2: 2560x1440_60 +2560+0 { ForceCompositionPipeline = On }"
notify-send "Freesync Disabled, Both Monitors Active" -t 4000 -i messagebox_info
else
# If disabled - notify and enable freesync
nvidia-settings --assign CurrentMetaMode="DP-4: 2560x1440_144 +0+0 {AllowGSYNCCompatible=On}, DP-1: null, DP-2: null"
notify-send "Freesync Enabled with 1 Monitor Active" -t 4000 -i messagebox_info
fiBut yeah it really sucks that you cant use multimonitor with it. I hope they find a way to implement something in X soonish
NVIDIA have put out a new Linux beta driver with support for 'G-SYNC Compatible monitors'
31 Jan 2019 at 12:35 am UTC Likes: 7
31 Jan 2019 at 12:35 am UTC Likes: 7
Whoops i had older version of nvidia-settings still, though the drivers were new :) it looks a bit different once i updated nvidia-settings also
also this might be needed, depends if your Monitor is whitelisted or not:
end result should show this on the screen:
also this might be needed, depends if your Monitor is whitelisted or not:
Spoiler, click me
end result should show this on the screen:
- Steam Controller more popular than Valve expected - they're working on stock issues
- Expanded AMD HDMI 2.1 support is coming to Linux
- Discord is finally less of a nuisance to update on Linux
- Steam Controller goes out of stock as Valve get a ton of "Game Console" shipments
- Valve announce a reservation system for the new Steam Controller
- > See more over 30 days here
Recently Updated
- The value of ecosystem.
- LoudTechie - New Desktop Screenshot Thread
- PlayingOnLinuxphone - The Great Android lockdown of 2026.
- PlayingOnLinuxphone - Feedback needed - future website updates
- Liam Dawe - Steam Deck desktop mode localization
- on_en_a_gros - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
Source: www.upload.ee
View cookie preferences.
Accept & Show Accept All & Don't show this again Direct Link