I feel like the fragility is more of a concern than the weight. either console is sooo entertaining and nice to have on, like, a trainride or whatever that it more than pays for its weight burden in your pack; The risk of it getting its screen broken and needing to be fully replaced is a lot more daunting to me than the need to carry an additional 5 lb around. My steam deck came with a carrying case that I always really appreciate for just that reason.
sunshine
joined 2 years ago
It's fun to try to pick up some American Sign Language. The best resource I'm aware of is: https://www.lifeprint.com/asl101/lessons/lessons.htm
you will still be invoking this from the shell using the solution that person described. the line of code that they wrote for you starting with
#!
is called a shebang, and it's job is to tell the computer what interpreter to use to run your script if you execute the script, rather than executing bash and passing the script as an argument. that is,./script.sh
rather thanbash my_script.sh
. note, you will need to runchmod +x my_script.sh
first in order to flag the script file as okay to execute.