From: b3nj5m1n <47924309+b3nj5m1n@users.noreply.github.com> Date: Fri, 20 May 2022 13:36:27 +0000 (+0200) Subject: Merge pull request #51 from FranzXaver/main X-Git-Tag: v0.2.0.0~36 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/xdg-ninja.git/commitdiff_plain/127b707c939f3300164af387039a630964943b08?hp=3d60834d4adfda53057777291189efb3e3841e87 Merge pull request #51 from FranzXaver/main Add "nvidia GLCache" and "Microsoft Visual Studio Code" --- diff --git a/programs/nvidia-glcache.json b/programs/nvidia-glcache.json new file mode 100644 index 0000000..1706623 --- /dev/null +++ b/programs/nvidia-glcache.json @@ -0,0 +1,10 @@ +{ + "files": [ + { + "path": "$HOME/.nv/GLCache", + "movable": true, + "help": "Export the following environment variables:\n\n```bash\nexport __GL_SHADER_DISK_CACHE_PATH=\"$XDG_CACHE_HOME\"/nv\n```\n" + } + ], + "name": "nvidia-glcache" +} diff --git a/programs/vscode.json b/programs/vscode.json new file mode 100644 index 0000000..19cda79 --- /dev/null +++ b/programs/vscode.json @@ -0,0 +1,10 @@ +{ + "files": [ + { + "path": "$HOME/.vscode", + "movable": false, + "help": "Currently unsupported.\n\n_Relevant issue:_ https://github.com/microsoft/vscode/issues/3884\n" + } + ], + "name": "vscode" +} diff --git a/programs/xorg.json b/programs/xorg.json index db93402..667b63b 100644 --- a/programs/xorg.json +++ b/programs/xorg.json @@ -3,23 +3,23 @@ { "path": "$HOME/.xsession-errors", "movable": true, - "help": "You need to export these enviornment variables as part of your xorg init script.\n\nThis could be _$HOME/.xinitrc_ for example, most display managers should also source _/etc/profile_.\n\n```bash\nERRFILE=\"$XDG_CACHE_HOME/X11/xsession-errors\"\n```\n" + "help": "You need to export these environment variables as part of your xorg init script.\n\nThis could be _$HOME/.xinitrc_ for example, most display managers should also source _/etc/profile_.\n\n```bash\nERRFILE=\"$XDG_CACHE_HOME/X11/xsession-errors\"\n```\n" }, { "path": "$HOME/.Xsession", "movable": true, - "help": "You need to export these enviornment variables as part of your xorg init script.\n\nThis could be _$HOME/.xinitrc_ for example, most display managers should also source _/etc/profile_.\n\n```bash\nALTUSERXSESSION=\"$XDG_CACHE_HOME/X11/Xsession\"\n```\n" + "help": "You need to export these environment variables as part of your xorg init script.\n\nThis could be _$HOME/.xinitrc_ for example, most display managers should also source _/etc/profile_.\n\n```bash\nALTUSERXSESSION=\"$XDG_CACHE_HOME/X11/Xsession\"\n```\n" }, { "path": "$HOME/.xsessionrc", "movable": true, - "help": "You need to export these enviornment variables as part of your xorg init script.\n\nThis could be _$HOME/.xinitrc_ for example, most display managers should also source _/etc/profile_.\n\n```bash\nUSERXSESSIONRC=\"$XDG_CACHE_HOME/X11/xsessionrc\"\n```\n" + "help": "You need to export these environment variables as part of your xorg init script.\n\nThis could be _$HOME/.xinitrc_ for example, most display managers should also source _/etc/profile_.\n\n```bash\nUSERXSESSIONRC=\"$XDG_CACHE_HOME/X11/xsessionrc\"\n```\n" }, { "path": "$HOME/.xsession", "movable": true, - "help": "You need to export these enviornment variables as part of your xorg init script.\n\nThis could be _$HOME/.xinitrc_ for example, most display managers should also source _/etc/profile_.\n\n```bash\nUSERXSESSION=\"$XDG_CACHE_HOME/X11/xsession\"\n```\n" + "help": "You need to export these environment variables as part of your xorg init script.\n\nThis could be _$HOME/.xinitrc_ for example, most display managers should also source _/etc/profile_.\n\n```bash\nUSERXSESSION=\"$XDG_CACHE_HOME/X11/xsession\"\n```\n" } ], "name": "xorg" -} \ No newline at end of file +}