{"id":17688347,"url":"https://github.com/gusbemacbe/wine-desktop-files","last_synced_at":"2025-03-30T21:28:33.041Z","repository":{"id":122446315,"uuid":"181380950","full_name":"gusbemacbe/wine-desktop-files","owner":"gusbemacbe","description":"Desktop Files of Wine apps","archived":false,"fork":false,"pushed_at":"2019-04-15T03:21:09.000Z","size":13,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-06T01:41:42.188Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gusbemacbe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-14T23:27:31.000Z","updated_at":"2021-02-05T23:11:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"6343e7a3-9b10-4987-abcb-c89c8b194e22","html_url":"https://github.com/gusbemacbe/wine-desktop-files","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusbemacbe%2Fwine-desktop-files","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusbemacbe%2Fwine-desktop-files/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusbemacbe%2Fwine-desktop-files/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gusbemacbe%2Fwine-desktop-files/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gusbemacbe","download_url":"https://codeload.github.com/gusbemacbe/wine-desktop-files/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246383175,"owners_count":20768360,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-24T11:44:12.613Z","updated_at":"2025-03-30T21:28:33.019Z","avatar_url":"https://github.com/gusbemacbe.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Desktop Files of Windows Apps\n\nStored in `~/.local/share/applications/`, desktop files of Windows apps – Adobe Illustrator, Adobe Photoshop, Affinity Designer, Beyond Compare, Lunacy and WInMerge compatible with icons themes and GTK themes.\n\n## Basic and quick installation\n\n\u003col\u003e\n\n\u003cli\u003eOpen the terminal and you need to create the directories \u003ccode\u003e~/Applications/Windows\u003c/code\u003e:\n  \n  **Tip:** If you want to keep the Windows apps in your HDD instead of SSD, avoiding the size increasing, follow:\n\n   ```\n   # Create the folder and subfolder in the HDD instead of the SSD\n   mkdir -p /data/your_hdd_name/Applications/Windows\n\n   # Symlink HDD to SSD\n   ln -sfnr /data/your_hdd_name/Applications/ ~/Applications\n\n   # Initialize new Wine prefix\n   WINEPREFIX=~/Applications/Windows wineboot –init\n   ```\n\n   If you receives an error that Wine could not find a Gecko package, you need to install Gecko package firstly:\n\n   ```\n   wget -O wine-gecko-64.msi 'http://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86_64.msi'\n   WINEPREFIX=~/Applications/Windows wine msiexec /passive /i ./wine-gecko-64.msi\n   ```\n\u003c/li\u003e\n\n\u003cli\u003e Change the system to Windows 10 (for the correct installation of .NET Framework 4.0):\n\n  ```\n  WINEPREFIX=~/Applications/Windows winetricks win10\n  ```\n\u003c/li\u003e\n\n\u003cli\u003e The package .NET Framework 4.0 is important for some apps to work with Wine, download and install:\n\n   ```\n   wget -O dotnet.exe 'http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe'\n   WINEPREFIX=~/Applications/Windows wine ./dotnet.exe /q\n   ```\n\u003c/li\u003e\n\n\u003cli\u003eOpen Winecfg:\n\n   ```\n   WINEPREFIX=~/Applications/Windows winecfg\n   ```\n  \n  \u003col\u003e\n      \u003cli\u003eSelect the guide ‘Libraries’ and type ‘mscoree’ in the box of ‘New override for library’. Select this library and select ‘Edit’. Select ‘Native (Windows)’.\u003c/li\u003e\n      \u003cli\u003eSelect the guide ‘Staging’ and mark ‘Enable VAAPI as backend for DXVA2 GPU decoding’ and ‘Enable GTK3 Theming’.\u003c/li\u003e\n  \u003c/ol\u003e\n\u003c/li\u003e\n\n\u003cli\u003eDownload and install another important package – .NET Framework 4.7.2:\n\n   ```\n   wget -O dotnet47.exe 'http://download.microsoft.com/download/D/D/3/DD35CC25-6E9C-484B-A746-C5BE0C923290/NDP47-KB3186497-x86-x64-AllOS-ENU.exe'\n   WINEPREFIX=~/Applications/Windows wine ./dotnet47.exe /q\n   ```\n\n   If you still receive the same error of missed Gecko package, repeat at the item 1 end.\n\u003c/li\u003e\n\n\u003cli\u003eFinally install the library `dxvk`, because certain applications require DirectX and Vulkan drivers compatible wtih certain video-cards. Also do not forget of installing `mesa-vulkan-drivers` (if you use Ubuntu)\n\n   ```\n   WINEPREFIX=~/Applications/Windows winetricks dxvk\n   ```\n\n   If you still receive the same error of missed Gecko package, repeat at the item 1 end.\n\u003c/li\u003e\n\n\u003c/ol\u003e\n\n## Install your favourite Windows app\n\nPlease choose one of subfolders at this repository. At the subfolder, you will read the README about how to install an application\n\n## References\n\n* [An attempt to run Affinity Designer on Linux via Wine](https://forum.affinity.serif.com/index.php?/topic/65310-an-attempt-to-run-affinity-designer-on-linux-via-wine/)\n\n## Licence\n\n© 2019 \u003ca href=\"https://opensource.org/licenses/MIT\"\u003e\u003cimg align=\"top\" src=\"https://img.shields.io/badge/License-MIT-b71c1c.svg\" alt=\"MIT\" \u003e\u003c/a\u003e Wine Desktop Files by Gustavo Costa","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgusbemacbe%2Fwine-desktop-files","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgusbemacbe%2Fwine-desktop-files","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgusbemacbe%2Fwine-desktop-files/lists"}