├── .dir-locals.el ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── build_failure.yml │ ├── feature-request.yml │ └── general.yml ├── dependabot.yml └── workflows │ ├── emacs-29.yml │ ├── emacs-30.yml │ ├── emacs-31.yml │ ├── emacs.yml │ ├── online.yml │ └── validate-icons.yml ├── .gitignore ├── .rubocop.yml ├── Aliases └── emacs-plus ├── CONTRIBUTING.org ├── CONTRIBUTORS ├── Formula ├── emacs-plus@26.rb ├── emacs-plus@27.rb ├── emacs-plus@28.rb ├── emacs-plus@29.rb ├── emacs-plus@30.rb └── emacs-plus@31.rb ├── LICENSE ├── Library ├── EmacsBase.rb ├── Icons.rb └── UrlResolver.rb ├── README.org ├── docs ├── development-guidelines.org └── emacs-client-app.md ├── icons ├── EmacsIcon1.icns ├── EmacsIcon2.icns ├── EmacsIcon3.icns ├── EmacsIcon4.icns ├── EmacsIcon5.icns ├── EmacsIcon6.icns ├── EmacsIcon7.icns ├── EmacsIcon8.icns ├── EmacsIcon9.icns ├── c9rgreen-sonoma.icns ├── cacodemon.icns ├── dragon.icns ├── elrumo1.icns ├── elrumo2.icns ├── emacs-card-blue-deep.icns ├── emacs-card-british-racing-green.icns ├── emacs-card-carmine.icns ├── emacs-card-green.icns ├── gnu-head.icns ├── memeplex-slim.icns ├── memeplex-wide.icns ├── modern-alecive-flatwoken.icns ├── modern-asingh4242.icns ├── modern-azhilin.icns ├── modern-bananxan.icns ├── modern-black-dragon.icns ├── modern-black-gnu-head.icns ├── modern-black-variant.icns ├── modern-bokehlicia-captiva.icns ├── modern-cg433n.icns ├── modern-doom.icns ├── modern-doom3.icns ├── modern-mzaplotnik.icns ├── modern-nuvola.icns ├── modern-orange.icns ├── modern-paper.icns ├── modern-papirus.icns ├── modern-pen-3d.icns ├── modern-pen-black.icns ├── modern-pen-lds56.icns ├── modern-pen.icns ├── modern-purple-flat.icns ├── modern-sexy-v1.icns ├── modern-sexy-v2.icns ├── modern-sjrmanning.icns ├── modern-vscode.icns ├── modern-yellow.icns ├── modern.icns ├── nobu417-big-sur.icns ├── original │ ├── EmacsIcon1.png │ ├── EmacsIcon2.png │ ├── EmacsIcon3.png │ ├── EmacsIcon4.png │ ├── EmacsIcon5.png │ ├── EmacsIcon6.png │ ├── EmacsIcon7.png │ ├── EmacsIcon8.png │ ├── EmacsIcon9.png │ ├── c9rgreen-sonoma.png │ ├── cacodemon.png │ ├── dragon.png │ ├── elrumo1.png │ ├── elrumo2.png │ ├── emacs-card-blue-deep.png │ ├── emacs-card-british-racing-green.png │ ├── emacs-card-carmine.png │ ├── emacs-card-green.png │ ├── gnu-head.png │ ├── memeplex-slim.png │ ├── memeplex-wide.png │ ├── modern-alecive-flatwoken.png │ ├── modern-asingh4242.png │ ├── modern-azhilin.png │ ├── modern-bananxan.png │ ├── modern-black-dragon.png │ ├── modern-black-gnu-head.png │ ├── modern-black-variant.png │ ├── modern-bokehlicia-captiva.png │ ├── modern-cg433n.png │ ├── modern-doom.png │ ├── modern-doom3.png │ ├── modern-mzaplotnik.png │ ├── modern-nuvola.png │ ├── modern-orange.png │ ├── modern-paper.png │ ├── modern-papirus.png │ ├── modern-pen-3d.png │ ├── modern-pen-black.png │ ├── modern-pen-lds56.png │ ├── modern-pen.png │ ├── modern-purple-flat.png │ ├── modern-sexy-v1.png │ ├── modern-sexy-v2.png │ ├── modern-sjrmanning.png │ ├── modern-vscode.png │ ├── modern-yellow.png │ ├── modern.png │ ├── nobu417-big-sur.png │ ├── retro-emacs-logo.png │ ├── retro-gnu-meditate-levitate.png │ ├── retro-sink-bw.png │ ├── retro-sink.png │ ├── savchenkovaleriy-big-sur-3d.png │ ├── savchenkovaleriy-big-sur-curvy-3d.png │ ├── savchenkovaleriy-big-sur.png │ ├── skamacs.png │ └── spacemacs.png ├── preview │ ├── EmacsIcon1_128.png │ ├── EmacsIcon2_128.png │ ├── EmacsIcon3_128.png │ ├── EmacsIcon4_128.png │ ├── EmacsIcon5_128.png │ ├── EmacsIcon6_128.png │ ├── EmacsIcon7_128.png │ ├── EmacsIcon8_128.png │ ├── EmacsIcon9_128.png │ ├── c9rgreen-sonoma_128.png │ ├── cacodemon_128.png │ ├── dragon_128.png │ ├── elrumo1_128.png │ ├── elrumo2_128.png │ ├── emacs-card-blue-deep_128.png │ ├── emacs-card-british-racing-green_128.png │ ├── emacs-card-carmine_128.png │ ├── emacs-card-green_128.png │ ├── gnu-head_128.png │ ├── memeplex-slim_128.png │ ├── memeplex-wide_128.png │ ├── modern-alecive-flatwoken_128.png │ ├── modern-asingh4242_128.png │ ├── modern-azhilin_128.png │ ├── modern-bananxan_128.png │ ├── modern-black-dragon_128.png │ ├── modern-black-gnu-head_128.png │ ├── modern-black-variant_128.png │ ├── modern-bokehlicia-captiva_128.png │ ├── modern-cg433n_128.png │ ├── modern-doom3_128.png │ ├── modern-doom_128.png │ ├── modern-mzaplotnik_128.png │ ├── modern-nuvola_128.png │ ├── modern-orange_128.png │ ├── modern-paper_128.png │ ├── modern-papirus_128.png │ ├── modern-pen-3d_128.png │ ├── modern-pen-black_128.png │ ├── modern-pen-lds56_128.png │ ├── modern-pen_128.png │ ├── modern-purple-flat_128.png │ ├── modern-purple_128.png │ ├── modern-sexy-v1_128.png │ ├── modern-sexy-v2_128.png │ ├── modern-sjrmanning_128.png │ ├── modern-vscode_128.png │ ├── modern-yellow_128.png │ ├── modern_128.png │ ├── nobu417-big-sur_128.png │ ├── retro-emacs-logo_128.png │ ├── retro-gnu-meditate-levitate_128.png │ ├── retro-sink-bw_128.png │ ├── retro-sink_128.png │ ├── savchenkovaleriy-big-sur-3d_128.png │ ├── savchenkovaleriy-big-sur-curvy-3d_128.png │ ├── savchenkovaleriy-big-sur_128.png │ ├── skamacs_128.png │ └── spacemacs_128.png ├── retro-emacs-logo.icns ├── retro-gnu-meditate-levitate.icns ├── retro-sink-bw.icns ├── retro-sink.icns ├── savchenkovaleriy-big-sur-3d.icns ├── savchenkovaleriy-big-sur-curvy-3d.icns ├── savchenkovaleriy-big-sur.icns ├── skamacs.icns └── spacemacs.icns ├── iconset ├── images ├── emacs.png ├── screenshot-01.png ├── screenshot-02.png ├── screenshot-no-titlebar-round-corners.png └── screenshot-no-titlebar-square-corners.png ├── patches ├── emacs-26 │ ├── fix-unexec.patch │ ├── fix-window-role.patch │ └── multicolor-fonts.patch ├── emacs-27 │ ├── arm.patch │ ├── fix-window-role.patch │ ├── ligatures-freeze-fix.patch │ ├── no-frame-refocus-cocoa.patch │ ├── no-titlebar.patch │ ├── system-appearance.patch │ └── xwidgets_webkit_in_cocoa.patch ├── emacs-28 │ ├── fix-window-role.patch │ ├── no-frame-refocus-cocoa.patch │ ├── no-titlebar-and-round-corners.patch │ ├── no-titlebar.patch │ └── system-appearance.patch ├── emacs-29 │ ├── fix-window-role.patch │ ├── no-frame-refocus-cocoa.patch │ ├── round-undecorated-frame.patch │ └── system-appearance.patch ├── emacs-30 │ ├── fix-window-role.patch │ ├── round-undecorated-frame.patch │ └── system-appearance.patch └── emacs-31 │ ├── round-undecorated-frame.patch │ └── system-appearance.patch └── scripts └── validate-icons.rb /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build_failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/ISSUE_TEMPLATE/build_failure.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/ISSUE_TEMPLATE/general.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/emacs-29.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/workflows/emacs-29.yml -------------------------------------------------------------------------------- /.github/workflows/emacs-30.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/workflows/emacs-30.yml -------------------------------------------------------------------------------- /.github/workflows/emacs-31.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/workflows/emacs-31.yml -------------------------------------------------------------------------------- /.github/workflows/emacs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/workflows/emacs.yml -------------------------------------------------------------------------------- /.github/workflows/online.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/workflows/online.yml -------------------------------------------------------------------------------- /.github/workflows/validate-icons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.github/workflows/validate-icons.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Formula/emacs-plus-local.* 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Aliases/emacs-plus: -------------------------------------------------------------------------------- 1 | ../Formula/emacs-plus@30.rb -------------------------------------------------------------------------------- /CONTRIBUTING.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/CONTRIBUTING.org -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Formula/emacs-plus@26.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Formula/emacs-plus@26.rb -------------------------------------------------------------------------------- /Formula/emacs-plus@27.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Formula/emacs-plus@27.rb -------------------------------------------------------------------------------- /Formula/emacs-plus@28.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Formula/emacs-plus@28.rb -------------------------------------------------------------------------------- /Formula/emacs-plus@29.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Formula/emacs-plus@29.rb -------------------------------------------------------------------------------- /Formula/emacs-plus@30.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Formula/emacs-plus@30.rb -------------------------------------------------------------------------------- /Formula/emacs-plus@31.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Formula/emacs-plus@31.rb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /Library/EmacsBase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Library/EmacsBase.rb -------------------------------------------------------------------------------- /Library/Icons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Library/Icons.rb -------------------------------------------------------------------------------- /Library/UrlResolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/Library/UrlResolver.rb -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/README.org -------------------------------------------------------------------------------- /docs/development-guidelines.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/docs/development-guidelines.org -------------------------------------------------------------------------------- /docs/emacs-client-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/docs/emacs-client-app.md -------------------------------------------------------------------------------- /icons/EmacsIcon1.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon1.icns -------------------------------------------------------------------------------- /icons/EmacsIcon2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon2.icns -------------------------------------------------------------------------------- /icons/EmacsIcon3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon3.icns -------------------------------------------------------------------------------- /icons/EmacsIcon4.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon4.icns -------------------------------------------------------------------------------- /icons/EmacsIcon5.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon5.icns -------------------------------------------------------------------------------- /icons/EmacsIcon6.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon6.icns -------------------------------------------------------------------------------- /icons/EmacsIcon7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon7.icns -------------------------------------------------------------------------------- /icons/EmacsIcon8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon8.icns -------------------------------------------------------------------------------- /icons/EmacsIcon9.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/EmacsIcon9.icns -------------------------------------------------------------------------------- /icons/c9rgreen-sonoma.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/c9rgreen-sonoma.icns -------------------------------------------------------------------------------- /icons/cacodemon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/cacodemon.icns -------------------------------------------------------------------------------- /icons/dragon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/dragon.icns -------------------------------------------------------------------------------- /icons/elrumo1.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/elrumo1.icns -------------------------------------------------------------------------------- /icons/elrumo2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/elrumo2.icns -------------------------------------------------------------------------------- /icons/emacs-card-blue-deep.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/emacs-card-blue-deep.icns -------------------------------------------------------------------------------- /icons/emacs-card-british-racing-green.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/emacs-card-british-racing-green.icns -------------------------------------------------------------------------------- /icons/emacs-card-carmine.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/emacs-card-carmine.icns -------------------------------------------------------------------------------- /icons/emacs-card-green.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/emacs-card-green.icns -------------------------------------------------------------------------------- /icons/gnu-head.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/gnu-head.icns -------------------------------------------------------------------------------- /icons/memeplex-slim.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/memeplex-slim.icns -------------------------------------------------------------------------------- /icons/memeplex-wide.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/memeplex-wide.icns -------------------------------------------------------------------------------- /icons/modern-alecive-flatwoken.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-alecive-flatwoken.icns -------------------------------------------------------------------------------- /icons/modern-asingh4242.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-asingh4242.icns -------------------------------------------------------------------------------- /icons/modern-azhilin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-azhilin.icns -------------------------------------------------------------------------------- /icons/modern-bananxan.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-bananxan.icns -------------------------------------------------------------------------------- /icons/modern-black-dragon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-black-dragon.icns -------------------------------------------------------------------------------- /icons/modern-black-gnu-head.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-black-gnu-head.icns -------------------------------------------------------------------------------- /icons/modern-black-variant.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-black-variant.icns -------------------------------------------------------------------------------- /icons/modern-bokehlicia-captiva.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-bokehlicia-captiva.icns -------------------------------------------------------------------------------- /icons/modern-cg433n.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-cg433n.icns -------------------------------------------------------------------------------- /icons/modern-doom.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-doom.icns -------------------------------------------------------------------------------- /icons/modern-doom3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-doom3.icns -------------------------------------------------------------------------------- /icons/modern-mzaplotnik.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-mzaplotnik.icns -------------------------------------------------------------------------------- /icons/modern-nuvola.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-nuvola.icns -------------------------------------------------------------------------------- /icons/modern-orange.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-orange.icns -------------------------------------------------------------------------------- /icons/modern-paper.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-paper.icns -------------------------------------------------------------------------------- /icons/modern-papirus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-papirus.icns -------------------------------------------------------------------------------- /icons/modern-pen-3d.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-pen-3d.icns -------------------------------------------------------------------------------- /icons/modern-pen-black.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-pen-black.icns -------------------------------------------------------------------------------- /icons/modern-pen-lds56.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-pen-lds56.icns -------------------------------------------------------------------------------- /icons/modern-pen.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-pen.icns -------------------------------------------------------------------------------- /icons/modern-purple-flat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-purple-flat.icns -------------------------------------------------------------------------------- /icons/modern-sexy-v1.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-sexy-v1.icns -------------------------------------------------------------------------------- /icons/modern-sexy-v2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-sexy-v2.icns -------------------------------------------------------------------------------- /icons/modern-sjrmanning.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-sjrmanning.icns -------------------------------------------------------------------------------- /icons/modern-vscode.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-vscode.icns -------------------------------------------------------------------------------- /icons/modern-yellow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern-yellow.icns -------------------------------------------------------------------------------- /icons/modern.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/modern.icns -------------------------------------------------------------------------------- /icons/nobu417-big-sur.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/nobu417-big-sur.icns -------------------------------------------------------------------------------- /icons/original/EmacsIcon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon1.png -------------------------------------------------------------------------------- /icons/original/EmacsIcon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon2.png -------------------------------------------------------------------------------- /icons/original/EmacsIcon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon3.png -------------------------------------------------------------------------------- /icons/original/EmacsIcon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon4.png -------------------------------------------------------------------------------- /icons/original/EmacsIcon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon5.png -------------------------------------------------------------------------------- /icons/original/EmacsIcon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon6.png -------------------------------------------------------------------------------- /icons/original/EmacsIcon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon7.png -------------------------------------------------------------------------------- /icons/original/EmacsIcon8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon8.png -------------------------------------------------------------------------------- /icons/original/EmacsIcon9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/EmacsIcon9.png -------------------------------------------------------------------------------- /icons/original/c9rgreen-sonoma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/c9rgreen-sonoma.png -------------------------------------------------------------------------------- /icons/original/cacodemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/cacodemon.png -------------------------------------------------------------------------------- /icons/original/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/dragon.png -------------------------------------------------------------------------------- /icons/original/elrumo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/elrumo1.png -------------------------------------------------------------------------------- /icons/original/elrumo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/elrumo2.png -------------------------------------------------------------------------------- /icons/original/emacs-card-blue-deep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/emacs-card-blue-deep.png -------------------------------------------------------------------------------- /icons/original/emacs-card-british-racing-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/emacs-card-british-racing-green.png -------------------------------------------------------------------------------- /icons/original/emacs-card-carmine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/emacs-card-carmine.png -------------------------------------------------------------------------------- /icons/original/emacs-card-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/emacs-card-green.png -------------------------------------------------------------------------------- /icons/original/gnu-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/gnu-head.png -------------------------------------------------------------------------------- /icons/original/memeplex-slim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/memeplex-slim.png -------------------------------------------------------------------------------- /icons/original/memeplex-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/memeplex-wide.png -------------------------------------------------------------------------------- /icons/original/modern-alecive-flatwoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-alecive-flatwoken.png -------------------------------------------------------------------------------- /icons/original/modern-asingh4242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-asingh4242.png -------------------------------------------------------------------------------- /icons/original/modern-azhilin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-azhilin.png -------------------------------------------------------------------------------- /icons/original/modern-bananxan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-bananxan.png -------------------------------------------------------------------------------- /icons/original/modern-black-dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-black-dragon.png -------------------------------------------------------------------------------- /icons/original/modern-black-gnu-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-black-gnu-head.png -------------------------------------------------------------------------------- /icons/original/modern-black-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-black-variant.png -------------------------------------------------------------------------------- /icons/original/modern-bokehlicia-captiva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-bokehlicia-captiva.png -------------------------------------------------------------------------------- /icons/original/modern-cg433n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-cg433n.png -------------------------------------------------------------------------------- /icons/original/modern-doom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-doom.png -------------------------------------------------------------------------------- /icons/original/modern-doom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-doom3.png -------------------------------------------------------------------------------- /icons/original/modern-mzaplotnik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-mzaplotnik.png -------------------------------------------------------------------------------- /icons/original/modern-nuvola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-nuvola.png -------------------------------------------------------------------------------- /icons/original/modern-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-orange.png -------------------------------------------------------------------------------- /icons/original/modern-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-paper.png -------------------------------------------------------------------------------- /icons/original/modern-papirus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-papirus.png -------------------------------------------------------------------------------- /icons/original/modern-pen-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-pen-3d.png -------------------------------------------------------------------------------- /icons/original/modern-pen-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-pen-black.png -------------------------------------------------------------------------------- /icons/original/modern-pen-lds56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-pen-lds56.png -------------------------------------------------------------------------------- /icons/original/modern-pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-pen.png -------------------------------------------------------------------------------- /icons/original/modern-purple-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-purple-flat.png -------------------------------------------------------------------------------- /icons/original/modern-sexy-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-sexy-v1.png -------------------------------------------------------------------------------- /icons/original/modern-sexy-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-sexy-v2.png -------------------------------------------------------------------------------- /icons/original/modern-sjrmanning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-sjrmanning.png -------------------------------------------------------------------------------- /icons/original/modern-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-vscode.png -------------------------------------------------------------------------------- /icons/original/modern-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern-yellow.png -------------------------------------------------------------------------------- /icons/original/modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/modern.png -------------------------------------------------------------------------------- /icons/original/nobu417-big-sur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/nobu417-big-sur.png -------------------------------------------------------------------------------- /icons/original/retro-emacs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/retro-emacs-logo.png -------------------------------------------------------------------------------- /icons/original/retro-gnu-meditate-levitate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/retro-gnu-meditate-levitate.png -------------------------------------------------------------------------------- /icons/original/retro-sink-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/retro-sink-bw.png -------------------------------------------------------------------------------- /icons/original/retro-sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/retro-sink.png -------------------------------------------------------------------------------- /icons/original/savchenkovaleriy-big-sur-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/savchenkovaleriy-big-sur-3d.png -------------------------------------------------------------------------------- /icons/original/savchenkovaleriy-big-sur-curvy-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/savchenkovaleriy-big-sur-curvy-3d.png -------------------------------------------------------------------------------- /icons/original/savchenkovaleriy-big-sur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/savchenkovaleriy-big-sur.png -------------------------------------------------------------------------------- /icons/original/skamacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/skamacs.png -------------------------------------------------------------------------------- /icons/original/spacemacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/original/spacemacs.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon1_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon1_128.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon2_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon2_128.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon3_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon3_128.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon4_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon4_128.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon5_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon5_128.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon6_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon6_128.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon7_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon7_128.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon8_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon8_128.png -------------------------------------------------------------------------------- /icons/preview/EmacsIcon9_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/EmacsIcon9_128.png -------------------------------------------------------------------------------- /icons/preview/c9rgreen-sonoma_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/c9rgreen-sonoma_128.png -------------------------------------------------------------------------------- /icons/preview/cacodemon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/cacodemon_128.png -------------------------------------------------------------------------------- /icons/preview/dragon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/dragon_128.png -------------------------------------------------------------------------------- /icons/preview/elrumo1_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/elrumo1_128.png -------------------------------------------------------------------------------- /icons/preview/elrumo2_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/elrumo2_128.png -------------------------------------------------------------------------------- /icons/preview/emacs-card-blue-deep_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/emacs-card-blue-deep_128.png -------------------------------------------------------------------------------- /icons/preview/emacs-card-british-racing-green_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/emacs-card-british-racing-green_128.png -------------------------------------------------------------------------------- /icons/preview/emacs-card-carmine_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/emacs-card-carmine_128.png -------------------------------------------------------------------------------- /icons/preview/emacs-card-green_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/emacs-card-green_128.png -------------------------------------------------------------------------------- /icons/preview/gnu-head_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/gnu-head_128.png -------------------------------------------------------------------------------- /icons/preview/memeplex-slim_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/memeplex-slim_128.png -------------------------------------------------------------------------------- /icons/preview/memeplex-wide_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/memeplex-wide_128.png -------------------------------------------------------------------------------- /icons/preview/modern-alecive-flatwoken_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-alecive-flatwoken_128.png -------------------------------------------------------------------------------- /icons/preview/modern-asingh4242_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-asingh4242_128.png -------------------------------------------------------------------------------- /icons/preview/modern-azhilin_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-azhilin_128.png -------------------------------------------------------------------------------- /icons/preview/modern-bananxan_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-bananxan_128.png -------------------------------------------------------------------------------- /icons/preview/modern-black-dragon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-black-dragon_128.png -------------------------------------------------------------------------------- /icons/preview/modern-black-gnu-head_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-black-gnu-head_128.png -------------------------------------------------------------------------------- /icons/preview/modern-black-variant_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-black-variant_128.png -------------------------------------------------------------------------------- /icons/preview/modern-bokehlicia-captiva_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-bokehlicia-captiva_128.png -------------------------------------------------------------------------------- /icons/preview/modern-cg433n_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-cg433n_128.png -------------------------------------------------------------------------------- /icons/preview/modern-doom3_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-doom3_128.png -------------------------------------------------------------------------------- /icons/preview/modern-doom_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-doom_128.png -------------------------------------------------------------------------------- /icons/preview/modern-mzaplotnik_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-mzaplotnik_128.png -------------------------------------------------------------------------------- /icons/preview/modern-nuvola_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-nuvola_128.png -------------------------------------------------------------------------------- /icons/preview/modern-orange_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-orange_128.png -------------------------------------------------------------------------------- /icons/preview/modern-paper_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-paper_128.png -------------------------------------------------------------------------------- /icons/preview/modern-papirus_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-papirus_128.png -------------------------------------------------------------------------------- /icons/preview/modern-pen-3d_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-pen-3d_128.png -------------------------------------------------------------------------------- /icons/preview/modern-pen-black_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-pen-black_128.png -------------------------------------------------------------------------------- /icons/preview/modern-pen-lds56_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-pen-lds56_128.png -------------------------------------------------------------------------------- /icons/preview/modern-pen_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-pen_128.png -------------------------------------------------------------------------------- /icons/preview/modern-purple-flat_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-purple-flat_128.png -------------------------------------------------------------------------------- /icons/preview/modern-purple_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-purple_128.png -------------------------------------------------------------------------------- /icons/preview/modern-sexy-v1_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-sexy-v1_128.png -------------------------------------------------------------------------------- /icons/preview/modern-sexy-v2_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-sexy-v2_128.png -------------------------------------------------------------------------------- /icons/preview/modern-sjrmanning_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-sjrmanning_128.png -------------------------------------------------------------------------------- /icons/preview/modern-vscode_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-vscode_128.png -------------------------------------------------------------------------------- /icons/preview/modern-yellow_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern-yellow_128.png -------------------------------------------------------------------------------- /icons/preview/modern_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/modern_128.png -------------------------------------------------------------------------------- /icons/preview/nobu417-big-sur_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/nobu417-big-sur_128.png -------------------------------------------------------------------------------- /icons/preview/retro-emacs-logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/retro-emacs-logo_128.png -------------------------------------------------------------------------------- /icons/preview/retro-gnu-meditate-levitate_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/retro-gnu-meditate-levitate_128.png -------------------------------------------------------------------------------- /icons/preview/retro-sink-bw_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/retro-sink-bw_128.png -------------------------------------------------------------------------------- /icons/preview/retro-sink_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/retro-sink_128.png -------------------------------------------------------------------------------- /icons/preview/savchenkovaleriy-big-sur-3d_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/savchenkovaleriy-big-sur-3d_128.png -------------------------------------------------------------------------------- /icons/preview/savchenkovaleriy-big-sur-curvy-3d_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/savchenkovaleriy-big-sur-curvy-3d_128.png -------------------------------------------------------------------------------- /icons/preview/savchenkovaleriy-big-sur_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/savchenkovaleriy-big-sur_128.png -------------------------------------------------------------------------------- /icons/preview/skamacs_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/skamacs_128.png -------------------------------------------------------------------------------- /icons/preview/spacemacs_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/preview/spacemacs_128.png -------------------------------------------------------------------------------- /icons/retro-emacs-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/retro-emacs-logo.icns -------------------------------------------------------------------------------- /icons/retro-gnu-meditate-levitate.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/retro-gnu-meditate-levitate.icns -------------------------------------------------------------------------------- /icons/retro-sink-bw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/retro-sink-bw.icns -------------------------------------------------------------------------------- /icons/retro-sink.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/retro-sink.icns -------------------------------------------------------------------------------- /icons/savchenkovaleriy-big-sur-3d.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/savchenkovaleriy-big-sur-3d.icns -------------------------------------------------------------------------------- /icons/savchenkovaleriy-big-sur-curvy-3d.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/savchenkovaleriy-big-sur-curvy-3d.icns -------------------------------------------------------------------------------- /icons/savchenkovaleriy-big-sur.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/savchenkovaleriy-big-sur.icns -------------------------------------------------------------------------------- /icons/skamacs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/skamacs.icns -------------------------------------------------------------------------------- /icons/spacemacs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/icons/spacemacs.icns -------------------------------------------------------------------------------- /iconset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/iconset -------------------------------------------------------------------------------- /images/emacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/images/emacs.png -------------------------------------------------------------------------------- /images/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/images/screenshot-01.png -------------------------------------------------------------------------------- /images/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/images/screenshot-02.png -------------------------------------------------------------------------------- /images/screenshot-no-titlebar-round-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/images/screenshot-no-titlebar-round-corners.png -------------------------------------------------------------------------------- /images/screenshot-no-titlebar-square-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/images/screenshot-no-titlebar-square-corners.png -------------------------------------------------------------------------------- /patches/emacs-26/fix-unexec.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-26/fix-unexec.patch -------------------------------------------------------------------------------- /patches/emacs-26/fix-window-role.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-26/fix-window-role.patch -------------------------------------------------------------------------------- /patches/emacs-26/multicolor-fonts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-26/multicolor-fonts.patch -------------------------------------------------------------------------------- /patches/emacs-27/arm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-27/arm.patch -------------------------------------------------------------------------------- /patches/emacs-27/fix-window-role.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-27/fix-window-role.patch -------------------------------------------------------------------------------- /patches/emacs-27/ligatures-freeze-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-27/ligatures-freeze-fix.patch -------------------------------------------------------------------------------- /patches/emacs-27/no-frame-refocus-cocoa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-27/no-frame-refocus-cocoa.patch -------------------------------------------------------------------------------- /patches/emacs-27/no-titlebar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-27/no-titlebar.patch -------------------------------------------------------------------------------- /patches/emacs-27/system-appearance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-27/system-appearance.patch -------------------------------------------------------------------------------- /patches/emacs-27/xwidgets_webkit_in_cocoa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-27/xwidgets_webkit_in_cocoa.patch -------------------------------------------------------------------------------- /patches/emacs-28/fix-window-role.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-28/fix-window-role.patch -------------------------------------------------------------------------------- /patches/emacs-28/no-frame-refocus-cocoa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-28/no-frame-refocus-cocoa.patch -------------------------------------------------------------------------------- /patches/emacs-28/no-titlebar-and-round-corners.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-28/no-titlebar-and-round-corners.patch -------------------------------------------------------------------------------- /patches/emacs-28/no-titlebar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-28/no-titlebar.patch -------------------------------------------------------------------------------- /patches/emacs-28/system-appearance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-28/system-appearance.patch -------------------------------------------------------------------------------- /patches/emacs-29/fix-window-role.patch: -------------------------------------------------------------------------------- 1 | ../emacs-28/fix-window-role.patch -------------------------------------------------------------------------------- /patches/emacs-29/no-frame-refocus-cocoa.patch: -------------------------------------------------------------------------------- 1 | ../emacs-28/no-frame-refocus-cocoa.patch -------------------------------------------------------------------------------- /patches/emacs-29/round-undecorated-frame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-29/round-undecorated-frame.patch -------------------------------------------------------------------------------- /patches/emacs-29/system-appearance.patch: -------------------------------------------------------------------------------- 1 | ../emacs-28/system-appearance.patch -------------------------------------------------------------------------------- /patches/emacs-30/fix-window-role.patch: -------------------------------------------------------------------------------- 1 | ../emacs-28/fix-window-role.patch -------------------------------------------------------------------------------- /patches/emacs-30/round-undecorated-frame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-30/round-undecorated-frame.patch -------------------------------------------------------------------------------- /patches/emacs-30/system-appearance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-30/system-appearance.patch -------------------------------------------------------------------------------- /patches/emacs-31/round-undecorated-frame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-31/round-undecorated-frame.patch -------------------------------------------------------------------------------- /patches/emacs-31/system-appearance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/patches/emacs-31/system-appearance.patch -------------------------------------------------------------------------------- /scripts/validate-icons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d12frosted/homebrew-emacs-plus/HEAD/scripts/validate-icons.rb --------------------------------------------------------------------------------