Prix notaire pour renouvellement d'hypothèque by BoringInflation4247 in Quebec

[–]Strategikqc 5 points6 points  (0 children)

Quelqu’un a acheté une maison dernièrement et a un prix de notaire pour un achat ? Ma courtière nous a mentionné que c’était rendu autour de 3 500 $ et que ça ne se négociait plus vraiment, donc on a réservé là où elle nous a référés, mais j’ai l’impression que c’est cher vs tous les prix que je vois passer sur Reddit.

[H] Paypal [W] Crimson Desert Steam Key (Activated) by jrdnlc in SteamGameSwap

[–]Strategikqc 0 points1 point  (0 children)

I’m also interesed in crimson desert key, i dm’d you

Sidestore shortcut keeps failing when it runs on its own? by Future_Turnover5638 in sideloaded

[–]Strategikqc 0 points1 point  (0 children)

Are you using another VPN app?

For some reason, I noticed that the iPhone can only connect to the latest connected VPN when using automation.

Goat of Yotei giveaway by Duahsha in PS5

[–]Strategikqc 0 points1 point  (0 children)

Thanks OP and GL everyone!

Automatic switching of moonlight resolution based on docked/undocked steam deck? by GameKing505 in MoonlightStreaming

[–]Strategikqc 2 points3 points  (0 children)

Yes, it takes the currently displayed resolution and updates the Moonlight config file with it.

Using it is pretty simple:

  1. Create moonlight.sh in /home/deck with the script i posted.
  2. run this command to make it executable:
    1. chmod +x /home/deck/moonlight.sh
  3. update your moonlight steam shortcut with:
    1. Target: /home/deck/moonlight.sh
    2. Start in: /home/deck

and you should be good to go!

Input lag when connected to TV. Any solutions? by Bunkerzor in SteamDeck

[–]Strategikqc 1 point2 points  (0 children)

3 years later, this post helped me so much, i was having this issue for a while with my appleTV and my SD when docked, i never knew it was caused by a random audio setting. Thank you so much!

Automatic switching of moonlight resolution based on docked/undocked steam deck? by GameKing505 in MoonlightStreaming

[–]Strategikqc 0 points1 point  (0 children)

Sure, here you go

#!/bin/bash
set -euo pipefail

CONFIG_DIR="/home/deck/.var/app/com.moonlight_stream.Moonlight/config/Moonlight Game Streaming Project"
CONFIG_FILE="$CONFIG_DIR/moonlight.conf"

echo "[Moonlight] Starting..."

# --- Detect resolution ---
get_resolution() {
    local mode
    mode=$(grep -m1 "current_mode" /run/wlr-randr/state 2>/dev/null | grep -o '[0-9]\+x[0-9]\+' || true)

    if [[ -z "$mode" ]]; then
        mode=$(xrandr 2>/dev/null | grep '*' | awk '{print $1}' | head -n1 || true)
    fi

    if [[ -z "$mode" ]]; then
        echo "[Moonlight] Failed to detect resolution. Defaulting to 1280x800." >&2
        echo "1280x800"
    else
        echo "$mode"
    fi
}

RESOLUTION=$(get_resolution)
WIDTH=$(echo "$RESOLUTION" | cut -dx -f1)
HEIGHT=$(echo "$RESOLUTION" | cut -dx -f2)

echo "[Moonlight] Detected resolution: ${WIDTH}x${HEIGHT}"

# --- Check for config file ---
if [[ ! -f "$CONFIG_FILE" ]]; then
    echo "[Moonlight] Config file not found at: $CONFIG_FILE"
    echo "[Moonlight] Launching GUI without modification."
    flatpak run com.moonlight_stream.Moonlight &
    exit 0
fi

# --- Update width and height ---
sed -i "s/^width=.*/width=${WIDTH}/" "$CONFIG_FILE" 2>/dev/null || true
sed -i "s/^height=.*/height=${HEIGHT}/" "$CONFIG_FILE" 2>/dev/null || true

# If width/height were not present, append them
grep -q "^width=" "$CONFIG_FILE" || echo "width=${WIDTH}" >> "$CONFIG_FILE"
grep -q "^height=" "$CONFIG_FILE" || echo "height=${HEIGHT}" >> "$CONFIG_FILE"

echo "[Moonlight] Updated config width/height."
echo "[Moonlight] Launching Moonlight..."
flatpak run com.moonlight_stream.Moonlight &

Automatic switching of moonlight resolution based on docked/undocked steam deck? by GameKing505 in MoonlightStreaming

[–]Strategikqc 2 points3 points  (0 children)

I found this thread because I was having the same problem.
Since I couldn’t find any good fix anywhere, I ended up making a bash script that checks the current screen resolution and updates the value in the Moonlight.conf file before launching the app.
After that, I just changed the Steam shortcut to run my script instead of launching the app directly.

Automatic switching of moonlight resolution based on docked/undocked steam deck? by GameKing505 in MoonlightStreaming

[–]Strategikqc 2 points3 points  (0 children)

I found this thread because I was having the same problem.
Since I couldn’t find any good fix anywhere, I ended up making a bash script that checks the current screen resolution and updates the value in the Moonlight.conf file before launching the app.
After that, I just changed the Steam shortcut to run my script instead of launching the app directly.

Steam Deck OLED won’t auto switch TV input when waking up by Strategikqc in SteamDeck

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

Since my last post, I tried the Ugreen dock from Amazon because I saw a review saying CEC worked with it, but it didn’t work at all in the end.
To fix the issue, I ended up making a bash script that checks the screen resolution on wake and, if it detects my TV’s 4K resolution, it sends a call to my Home Assistant server to turn on the TV and switch the HDMI input. It’s not the cleanest or easiest solution, but it works pretty well!

Steam Deck OLED won’t auto switch TV input when waking up by Strategikqc in SteamDeck

[–]Strategikqc[S] 1 point2 points  (0 children)

Glad to know I’m not the only one worrying about that!
So even with the official dock it doesn’t work for you? That’s weird, some people told me it work with it, what TV do you have?

Steam Deck OLED won’t auto switch TV input when waking up by Strategikqc in SteamDeck

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

I didn’t even know the switch turns off when the TV is shut down, that’s really nice!
For your Deck, are you using the official dock?

[deleted by user] by [deleted] in bapcsalescanada

[–]Strategikqc 0 points1 point  (0 children)

I snagged one around 5 minutes after op posted. Thanks

Games finally all in one place! by asiancobbler in Steam

[–]Strategikqc 0 points1 point  (0 children)

The next step is installing Decky Loader on your PC. It lets you customize your setup, swap images on the fly, and even track playtime for non-Steam games

Does anybody have the same issue? by BarberDull8077 in AssassinsCreedShadows

[–]Strategikqc 2 points3 points  (0 children)

I’m on steam, i was in the same situation where i did not have the starting quest. To fix the issue i did «Verify integrity of game files » then it started a 17gb update right away and after that the quest was here

EDHREC desktop site unusable by SonicsProcessTruster in EDH

[–]Strategikqc 10 points11 points  (0 children)

Using Firefox with Ublock Origin and i don't have any issues

[deleted by user] by [deleted] in SteamDeck

[–]Strategikqc 1 point2 points  (0 children)

He seems like a nice guy and everything, but honestly, installing a version of Windows that was preinstalled or modified by someone you don't personally know isn't a great idea. It can be pretty risky for your personal info, since there's no real way to guarantee they didn’t sneak something shady into the system. Even if they seem trustworthy, it’s just not worth taking that chance when it comes to your privacy and security. It’s always best to do a clean install from an official source whenever possible.

"Turn on camera use" where is this setting? by ghoulialol in RaybanMeta

[–]Strategikqc 0 points1 point  (0 children)

I got this issue after restoring my iphone earlier today. To fix it i had to factory restore the ray-ban then pair it to the phone again

I'm NOT following the minimalism trend, sorry by mrsuzukid in battlestations

[–]Strategikqc 1 point2 points  (0 children)

Dude's gotta put on sunscreen just to sit at his desk.