You must like me if you came to look at my profile… buy me a coffee if you want

BTC: bc1q0usqs8damxwq5rj3f4k6djl8sqlnn4mg3guqcj

XMR: 87iTuMDLbqUiLGpTfFdPpnP4dbf38UW8tadbrHKcUB8H6oG6PB15kJHhnvA8zCb7dgSBWiN65PC

RVN: RBCRFeu3Pc4NbAf92HGxzVwf8M7VmHArje

  • 1 Post
  • 119 Comments
Joined 2 years ago
cake
Cake day: March 7th, 2024

help-circle





  • PrettyFlyForAFatGuy@feddit.uktoLinux Gaming@lemmy.worldGE-Proton10-13 Released
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    1
    ·
    edit-2
    24 days ago

    If anyone is interested i have written a small script that i added to my crontab to check for, and if i don’t already have it, download and install each GE release daily (or however frequently you want it to run, it’s your crontab).

    make sure your .steam/root/compatibilitytools.d folder matches the steam_compatibility_folder variable below and update it to match if not

    #!/bin/bash
    
    latest_full_path="$(curl -sLOJ curl -s https://api.github.com/repos/GloriousEggroll/proton-ge-custom/releases/latest | grep browser_download_url | cut -d\" -f4 | grep .tar.gz)"
    IFS_orig="$IFS"; IFS='/'; read -a full_path_as_array <<< "$latest_full_path"; IFS="$IFS_orig"
    latest="${full_path_as_array[-1]}"
    extracted_file_name="$(echo $latest | sed -e s/.tar.gz//g)"
    steam_compatibility_folder="$HOME/.steam/root/compatibilitytools.d"
    
    if ! [ -d "$steam_compatibility_folder/$extracted_file_name" ]; then
      curl -LS "$latest_full_path" --output "/tmp/$latest"
      tar xzf "/tmp/$latest" -C "${steam_compatibility_folder}/"
      rm "/tmp/$latest"
    fi
    
    

    i am not responsible for any loss of data or damage you encounter in running this







  • I have the 500GB version of the note 20 and have almost completely filled it.

    I sync certain folders across all of my devices which is especially useful when i’m planning travel and actually travelling. it also means i can save photos and access and share them across all of my devices.

    As for RAM I am extremely selective about what i install on my device, i prune applications regularly and flat out refuse to use apps for services where webapps are available. That in mind, my RAM on my 12GB phone is currently about 75% in use.

    I do also watch media on my phone occasionally, especially on flights. the screen on the note20 ultra is very nice for that.