mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-05-27 18:31:35 +00:00
19 lines
350 B
Bash
19 lines
350 B
Bash
#!/bin/bash
|
|
appImageInit() {
|
|
|
|
#Autofixes, put here functions that make under the hood fixes.
|
|
autofix_duplicateESDE
|
|
#autofix_raSavesFolders
|
|
autofix_lnk
|
|
SRM_migration
|
|
ESDE_migration
|
|
SRM_createDesktopShortcut
|
|
ESDE_createDesktopShortcut
|
|
autofix_dynamicParsers
|
|
|
|
# Init functions
|
|
mkdir -p "$HOME/emudeck/logs"
|
|
mkdir -p "$HOME/emudeck/feeds"
|
|
|
|
}
|