This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# script for installing packages on Steam Deck using | |
# pacman repositories (not flatpack, snap or appimage) | |
# | |
# ATENTION: USE IT AT YOUR OWN RISK!!!! | |
# | |
# this will modify root filesystem so it will probably get | |
# overwrite on system updates but is totally ok executing | |
# it several times, so if something stops working just |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# script for installing x11vnc on Steam Deck | |
# ATENTION: USE IT AT YOUR OWN RISK!!!! | |
# | |
# this will modify root filesystem so it will probably get | |
# overwrite on system updates but is totally ok executing | |
# it several times, so if something stops working just | |
# launch it again | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# copy one track between ardour projects including layers | |
# àngel "mussol" bosch - [email protected] | |
VER="0.4" | |
TOOLS="xmlstarlet sed" # external binaries needed | |
PREFIX_SOURCE="Imported-" # prefix used to avoid name collision | |
PREFIX_BCK=`date +%F_%H-%M-%S` # prefix used for project name backup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# copy one track between ardour projects including layers | |
# àngel "mussol" bosch - [email protected] | |
VER="0.2" | |
TOOLS="xmlstarlet sed" # external binaries needed | |
PREFIX_SOURCE="Imported-" # prefix used to avoid name collision | |
PREFIX_BCK=`date +%F_%H-%M-%S` # prefix used for project name backup |