From 7af8065ffe55c4bd373d8543839a973e6e85eb81 Mon Sep 17 00:00:00 2001 From: Luke Cotton Date: Tue, 7 May 2024 12:41:39 +0100 Subject: [PATCH 1/2] Add EmulationStation DE --- programs/es-de.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 programs/es-de.json diff --git a/programs/es-de.json b/programs/es-de.json new file mode 100644 index 00000000..9bf4a34e --- /dev/null +++ b/programs/es-de.json @@ -0,0 +1,15 @@ +{ + "name": "emulationstation-de", + "files": [ + { + "path": "$HOME/.emulationstation", + "movable": true, + "help": "Export the following environment variable:\n\n```bash\nexport ESDE_APPDATA_DIR=\"$XDG_DATA_HOME\"/ES-DE\n```\n" + }, + { + "path": "$HOME/ES-DE", + "movable": true, + "help": "Export the following environment variable:\n\n```bash\nexport ESDE_APPDATA_DIR=\"$XDG_DATA_HOME\"/ES-DE\n```\n" + } + ] +} From 5364e2c9ec59480db9db9264cff0bd5ac611f549 Mon Sep 17 00:00:00 2001 From: Luke Cotton Date: Tue, 7 May 2024 12:58:27 +0100 Subject: [PATCH 2/2] Change $XDG_DATA_HOME reference to $XDG_CONFIG_HOME --- programs/es-de.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/es-de.json b/programs/es-de.json index 9bf4a34e..36e6578b 100644 --- a/programs/es-de.json +++ b/programs/es-de.json @@ -4,12 +4,12 @@ { "path": "$HOME/.emulationstation", "movable": true, - "help": "Export the following environment variable:\n\n```bash\nexport ESDE_APPDATA_DIR=\"$XDG_DATA_HOME\"/ES-DE\n```\n" + "help": "Export the following environment variable:\n\n```bash\nexport ESDE_APPDATA_DIR=\"$XDG_CONFIG_HOME\"/ES-DE\n```\n" }, { "path": "$HOME/ES-DE", "movable": true, - "help": "Export the following environment variable:\n\n```bash\nexport ESDE_APPDATA_DIR=\"$XDG_DATA_HOME\"/ES-DE\n```\n" + "help": "Export the following environment variable:\n\n```bash\nexport ESDE_APPDATA_DIR=\"$XDG_CONFIG_HOME\"/ES-DE\n```\n" } ] }