Skip to content

Instantly share code, notes, and snippets.

@amcolash
Last active September 2, 2022 23:05
Show Gist options
  • Save amcolash/8fc2d5cb07f003eb71ff00e8aef34d12 to your computer and use it in GitHub Desktop.
Save amcolash/8fc2d5cb07f003eb71ff00e8aef34d12 to your computer and use it in GitHub Desktop.
An install script to set up developer tools on steam deck
#!/bin/bash
### Steam Deck dev tools install script ###
# This script needs to be run as root
if [ "$EUID" -ne 0 ]
then echo "Please run this script as root (with sudo)"
exit
fi
# Disable read-only filesystem
steamos-readonly disable
# Set up pacman
pacman-key --init
pacman-key --populate archlinux
# Install base developer libraries
pacman -Sy base-devel linux-api-headers
# Install useful programs and tools
pacman -Sy git wget curl vim
# Install language support
pacman -Sy go nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment