Skip to content

Instantly share code, notes, and snippets.

@chayandatta
Last active April 26, 2020 09:31
Show Gist options
  • Save chayandatta/b30e039c833355211412edbfcae48e13 to your computer and use it in GitHub Desktop.
Save chayandatta/b30e039c833355211412edbfcae48e13 to your computer and use it in GitHub Desktop.
Make Unity UI Stable and match with eos theme
GTK_CSD=0 /home/chayan/Unity/Hub/Editor/2019.3.11f1/Editor/./Unity -projectPath /home/chayan/unity/DemoTest -manualLicenseFile '/home/chayan/Downloads/Unity_v2017.x.ulf' 

Type this in terminal

change your paths

  • 1st path is for Unity file it's running as ./Unity

  • 2nd is the project path

  • 3rd is the licence path

---OR---

CREATE A executable python file

#!/usr/bin/env python
import os
os.system("GTK_CSD=0 /home/chayan/Unity/Hub/Editor/2019.3.11f1/Editor/./Unity -projectPath /home/chayan/unity/DemoTest -manualLicenseFile '/home/chayan/Downloads/Unity_v2017.x.ulf' ")

and run it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment