├── .github └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── dconf └── settings.dconf ├── fonts └── SF-Pro-Display-Regular.otf ├── images ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── gnomintosh.png ├── main.sh └── wallpaper ├── blue-lotus1.png ├── blue-lotus2.png ├── monterey.png ├── smallsur.png └── ventura.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | WhiteSur* 2 | temp 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/README.md -------------------------------------------------------------------------------- /dconf/settings.dconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/dconf/settings.dconf -------------------------------------------------------------------------------- /fonts/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/fonts/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/images/4.png -------------------------------------------------------------------------------- /images/gnomintosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/images/gnomintosh.png -------------------------------------------------------------------------------- /main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/main.sh -------------------------------------------------------------------------------- /wallpaper/blue-lotus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/wallpaper/blue-lotus1.png -------------------------------------------------------------------------------- /wallpaper/blue-lotus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/wallpaper/blue-lotus2.png -------------------------------------------------------------------------------- /wallpaper/monterey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/wallpaper/monterey.png -------------------------------------------------------------------------------- /wallpaper/smallsur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/wallpaper/smallsur.png -------------------------------------------------------------------------------- /wallpaper/ventura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jothi-prasath/gnomintosh/HEAD/wallpaper/ventura.jpg --------------------------------------------------------------------------------