├── .github └── workflows │ └── classUpdate.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── archive ├── flavors │ ├── catppuccin-macchiato.theme.css │ ├── catppuccin-mocha.theme.css │ ├── gruvbox-material.theme.css │ ├── light.theme.css │ ├── monochrome.theme.css │ ├── rosepine.theme.css │ ├── spotify-text.theme.css │ ├── templates │ │ └── pywal16.theme.css │ └── vencord.theme.css ├── main.css ├── system24.theme.css └── unrounding.css ├── assets ├── asciid.woff ├── cats.gif ├── old │ ├── gruv-material.png │ ├── monochrome.png │ ├── rosepine.png │ ├── screenshot.png │ ├── screenshot2.png │ └── screenshot3.png ├── preview.png └── screenshot.png ├── benchmark ├── benchmark.js ├── benchmarkresults.csv ├── benchmarkresults2.csv └── benchmarkresults3.csv ├── package.json ├── scripts └── dev.js ├── src ├── ascii.css ├── colors.css ├── main.css ├── panel-labels.css ├── spotify-bar.css └── unrounding.css └── theme ├── README.md ├── flavors ├── system24-catppuccin-macchiato.theme.css ├── system24-catppuccin-mocha.theme.css ├── system24-everforest.theme.css ├── system24-nord.theme.css ├── system24-rose-pine-moon.theme.css ├── system24-rose-pine.theme.css ├── system24-tokyo-night.theme.css └── system24-vencord.theme.css └── system24.theme.css /.github/workflows/classUpdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/.github/workflows/classUpdate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/README.md -------------------------------------------------------------------------------- /archive/flavors/catppuccin-macchiato.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/catppuccin-macchiato.theme.css -------------------------------------------------------------------------------- /archive/flavors/catppuccin-mocha.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/catppuccin-mocha.theme.css -------------------------------------------------------------------------------- /archive/flavors/gruvbox-material.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/gruvbox-material.theme.css -------------------------------------------------------------------------------- /archive/flavors/light.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/light.theme.css -------------------------------------------------------------------------------- /archive/flavors/monochrome.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/monochrome.theme.css -------------------------------------------------------------------------------- /archive/flavors/rosepine.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/rosepine.theme.css -------------------------------------------------------------------------------- /archive/flavors/spotify-text.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/spotify-text.theme.css -------------------------------------------------------------------------------- /archive/flavors/templates/pywal16.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/templates/pywal16.theme.css -------------------------------------------------------------------------------- /archive/flavors/vencord.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/flavors/vencord.theme.css -------------------------------------------------------------------------------- /archive/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/main.css -------------------------------------------------------------------------------- /archive/system24.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/system24.theme.css -------------------------------------------------------------------------------- /archive/unrounding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/archive/unrounding.css -------------------------------------------------------------------------------- /assets/asciid.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/asciid.woff -------------------------------------------------------------------------------- /assets/cats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/cats.gif -------------------------------------------------------------------------------- /assets/old/gruv-material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/old/gruv-material.png -------------------------------------------------------------------------------- /assets/old/monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/old/monochrome.png -------------------------------------------------------------------------------- /assets/old/rosepine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/old/rosepine.png -------------------------------------------------------------------------------- /assets/old/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/old/screenshot.png -------------------------------------------------------------------------------- /assets/old/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/old/screenshot2.png -------------------------------------------------------------------------------- /assets/old/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/old/screenshot3.png -------------------------------------------------------------------------------- /assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/preview.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /benchmark/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/benchmark/benchmark.js -------------------------------------------------------------------------------- /benchmark/benchmarkresults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/benchmark/benchmarkresults.csv -------------------------------------------------------------------------------- /benchmark/benchmarkresults2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/benchmark/benchmarkresults2.csv -------------------------------------------------------------------------------- /benchmark/benchmarkresults3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/benchmark/benchmarkresults3.csv -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/package.json -------------------------------------------------------------------------------- /scripts/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/scripts/dev.js -------------------------------------------------------------------------------- /src/ascii.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/src/ascii.css -------------------------------------------------------------------------------- /src/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/src/colors.css -------------------------------------------------------------------------------- /src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/src/main.css -------------------------------------------------------------------------------- /src/panel-labels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/src/panel-labels.css -------------------------------------------------------------------------------- /src/spotify-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/src/spotify-bar.css -------------------------------------------------------------------------------- /src/unrounding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/src/unrounding.css -------------------------------------------------------------------------------- /theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/README.md -------------------------------------------------------------------------------- /theme/flavors/system24-catppuccin-macchiato.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/flavors/system24-catppuccin-macchiato.theme.css -------------------------------------------------------------------------------- /theme/flavors/system24-catppuccin-mocha.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/flavors/system24-catppuccin-mocha.theme.css -------------------------------------------------------------------------------- /theme/flavors/system24-everforest.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/flavors/system24-everforest.theme.css -------------------------------------------------------------------------------- /theme/flavors/system24-nord.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/flavors/system24-nord.theme.css -------------------------------------------------------------------------------- /theme/flavors/system24-rose-pine-moon.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/flavors/system24-rose-pine-moon.theme.css -------------------------------------------------------------------------------- /theme/flavors/system24-rose-pine.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/flavors/system24-rose-pine.theme.css -------------------------------------------------------------------------------- /theme/flavors/system24-tokyo-night.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/flavors/system24-tokyo-night.theme.css -------------------------------------------------------------------------------- /theme/flavors/system24-vencord.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/flavors/system24-vencord.theme.css -------------------------------------------------------------------------------- /theme/system24.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/refact0r/system24/HEAD/theme/system24.theme.css --------------------------------------------------------------------------------