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 | |
| FLATPAK_STEAM_PATH=~/.var/app/com.valvesoftware.Steam | |
| [ ! -d "$FLATPAK_STEAM_PATH" ] && echo 'Flatpak Steam not found' && exit 1 | |
| # Copy the icon files | |
| USER_ICONS_PATH=~/.local/share/icons | |
| mkdir -p "$USER_ICONS_PATH" | |
| rsync -a "$FLATPAK_STEAM_PATH"/data/icons/* "$USER_ICONS_PATH" |
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 -e | |
| # Usage: ./setup-queue.sh | |
| # (at magento's root dir) | |
| # | |
| # This will update your app/etc/env.php with the config needed | |
| # to process magento queued messages (background jobs) using mysql + cron, | |
| # executing them alongside your regular bin/magento cron:run scheduling | |
| # Backup the env.php file to app/etc/env.php.bkp |
OlderNewer