This file contains hidden or 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 | |
| # Builds Wine | |
| # Notes: | |
| # 1. Targeted for usage inside a VM (use shared directory $HOME/mnt/vmshare between host and guest). | |
| # | |
| # 2. For best build, enable WineHQ repository for your Debian flavor, including sources. | |
| # I.e. in your .sources file for it, have: | |
| # Types: deb deb-src |
This file contains hidden or 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 | |
| # Notes: | |
| # | |
| # 1. Works for tags and specific hash commits too (override mesa_branch variable with needed value). | |
| # | |
| # 2. By default builds for /opt/mesa-<branch> and places the result in ${HOME}/mnt/vmshare/mesa-<branch> | |
| # You can override the build deployment location by setting dest_dir. For example this should put it right away | |
| # in /opt/mesa-<branch> | |
| # |
This file contains hidden or 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 | |
| # Helper script for wine_run.sh / winetricks_run.sh | |
| # Sets environment. See wine_run.sh for details on | |
| # configurable variables usage. | |
| # $wine variable is a shortcut, setting /opt/$wine for $wine_path | |
| # But explicitly set $wine_path takes priority. | |
| if [[ "${wine+isset}" ]] && ! [[ "${wine_path+isset}" ]]; then |
This file contains hidden or 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 | |
| # Configuration (set through environment variables): | |
| # | |
| # WINEPREFIX - what prefix to use. | |
| # wine_path - to use custom location of Wine (e.g. /opt/wine-main). | |
| # wine - shortcut for the above, to assume /opt/$wine | |
| # wine_cleanup - run some command after wine exits | |
| # |
This file contains hidden or 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 | |
| # Configuration: | |
| # | |
| # WINEPREFIX what prefix to use (or will use the default). | |
| # wine_path custom location of Wine if needed (custom variable for the script). | |
| # wine shortcut for the above, to assume /opt/$wine | |
| # | |
| # Uses wine_env.sh |
This file contains hidden or 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 | |
| # Assumes Mesa libraries are installed in: | |
| # /opt/${mesa}/<arch_dir> | |
| # or in | |
| # ${mesa_path}/<arch_dir> | |
| # For explicit control of the run | |
| mesa_run=${mesa_run:-true} | |
| if ! $mesa_run; then |
This file contains hidden or 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 | |
| # Notes: | |
| # | |
| # For Debian build of dxvk and vkd3d-proton. | |
| # | |
| # 1. To build 64-bit and 32-bit dxvk: | |
| # | |
| # for bitness in 64 32; do project=dxvk bitness=$bitness dxvk_build.sh; done | |
| # |
This file contains hidden or 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 | |
| # Builds Wine-staging | |
| # Notes: | |
| # 1. Targeted for usage inside a VM (use shared directory $HOME/mnt/vmshare between host and guest). | |
| # | |
| # 2. For best build, enable WineHQ repository for your Debian flavor, including sources. | |
| # I.e. in your .sources file for it, have: | |
| # Types: deb deb-src |
This file contains hidden or 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 | |
| # Extractor for game ROMs from Konami Collector's Series. | |
| # | |
| # Usage: gog_extract_konami_collectors_series.sh <path_to>/cc.exe | |
| # | |
| # Make sure you have xxd hexdump tool and dd installed. | |
| # | |
| # ROM locations |
This file contains hidden or 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 | |
| # | |
| # Uses ripgrep (rg) | |
| # | |
| length=${length:-5} | |
| tries=${tries:-6} | |
| # All words of given length from a dictionary |