• 0 Posts
  • 14 Comments
Joined 9 months ago
cake
Cake day: February 8th, 2025

help-circle



  • I never really considered cloud saves. That’s an excellent point.

    GOG has linux support (or at least lutris offers gog-specific wine config when you launch something windowsy).

    To be fair I have no idea what Workshop, Input or Remote Play are, so I’ll go along with them being wanted features. But I feel a lot of things are not really the responsibility of the shop and more of the client software.










  • git() {
      if [ "$1" = "cd" ]; then
        shift
        cd "./$(command git rev-parse --show-cdup)$*"
      else
        command git "$@"
      fi
    }
    

    This lets you run git cd to go to the root of your repo, or git cd foo/bar to go to a path relative to that root. You can’t do it as an alias because it’s conditional, and you can’t do it as a git-cd command because that wouldn’t affect the current shell.