├── .gitignore ├── @Resources ├── Fonts │ ├── FUTRFW.TTF │ └── font-credit.txt ├── Languages │ ├── de.txt │ ├── en.txt │ ├── fr.txt │ ├── id.txt │ ├── nl.txt │ ├── pt-BR.txt │ ├── ru.txt │ ├── template.txt │ └── vi.txt └── shared.inc ├── Analog └── analog.ini ├── Chronophage └── chrono.ini ├── Date ├── date-wdm.ini └── date-wmd.ini ├── Media ├── NowPlaying │ ├── media.ini │ ├── media_right.ini │ ├── media_thin.ini │ └── shared.inc └── Spotify │ ├── shared.inc │ ├── spotify-mini.ini │ ├── spotify-right.ini │ └── spotify.ini ├── Notes ├── notepad.ini ├── notes.lua └── notes.txt ├── README.md ├── Search └── websearch.ini ├── System ├── Uptime │ ├── uptime.ini │ └── uptime.lua ├── shared.inc ├── system-h.ini └── system-v.ini ├── Time ├── shared.inc ├── time-hm.ini └── time-hms.ini ├── Weather └── weather.ini └── dev ├── Layouts └── Rainmeter.ini ├── Plugins └── Spotify │ ├── 32bit │ └── SpotifyPlugin.dll │ ├── 64bit │ └── SpotifyPlugin.dll │ └── credits.txt ├── elementary_preview_2017-07-10.jpg ├── header.bmp └── readme-style.css /.gitignore: -------------------------------------------------------------------------------- 1 | # an ignore file 2 | README.html 3 | -------------------------------------------------------------------------------- /@Resources/Fonts/FUTRFW.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Fonts/FUTRFW.TTF -------------------------------------------------------------------------------- /@Resources/Fonts/font-credit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Fonts/font-credit.txt -------------------------------------------------------------------------------- /@Resources/Languages/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/de.txt -------------------------------------------------------------------------------- /@Resources/Languages/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/en.txt -------------------------------------------------------------------------------- /@Resources/Languages/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/fr.txt -------------------------------------------------------------------------------- /@Resources/Languages/id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/id.txt -------------------------------------------------------------------------------- /@Resources/Languages/nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/nl.txt -------------------------------------------------------------------------------- /@Resources/Languages/pt-BR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/pt-BR.txt -------------------------------------------------------------------------------- /@Resources/Languages/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/ru.txt -------------------------------------------------------------------------------- /@Resources/Languages/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/template.txt -------------------------------------------------------------------------------- /@Resources/Languages/vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/Languages/vi.txt -------------------------------------------------------------------------------- /@Resources/shared.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/@Resources/shared.inc -------------------------------------------------------------------------------- /Analog/analog.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Analog/analog.ini -------------------------------------------------------------------------------- /Chronophage/chrono.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Chronophage/chrono.ini -------------------------------------------------------------------------------- /Date/date-wdm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Date/date-wdm.ini -------------------------------------------------------------------------------- /Date/date-wmd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Date/date-wmd.ini -------------------------------------------------------------------------------- /Media/NowPlaying/media.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Media/NowPlaying/media.ini -------------------------------------------------------------------------------- /Media/NowPlaying/media_right.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Media/NowPlaying/media_right.ini -------------------------------------------------------------------------------- /Media/NowPlaying/media_thin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Media/NowPlaying/media_thin.ini -------------------------------------------------------------------------------- /Media/NowPlaying/shared.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Media/NowPlaying/shared.inc -------------------------------------------------------------------------------- /Media/Spotify/shared.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Media/Spotify/shared.inc -------------------------------------------------------------------------------- /Media/Spotify/spotify-mini.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Media/Spotify/spotify-mini.ini -------------------------------------------------------------------------------- /Media/Spotify/spotify-right.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Media/Spotify/spotify-right.ini -------------------------------------------------------------------------------- /Media/Spotify/spotify.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Media/Spotify/spotify.ini -------------------------------------------------------------------------------- /Notes/notepad.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Notes/notepad.ini -------------------------------------------------------------------------------- /Notes/notes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Notes/notes.lua -------------------------------------------------------------------------------- /Notes/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Notes/notes.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/README.md -------------------------------------------------------------------------------- /Search/websearch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Search/websearch.ini -------------------------------------------------------------------------------- /System/Uptime/uptime.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/System/Uptime/uptime.ini -------------------------------------------------------------------------------- /System/Uptime/uptime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/System/Uptime/uptime.lua -------------------------------------------------------------------------------- /System/shared.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/System/shared.inc -------------------------------------------------------------------------------- /System/system-h.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/System/system-h.ini -------------------------------------------------------------------------------- /System/system-v.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/System/system-v.ini -------------------------------------------------------------------------------- /Time/shared.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Time/shared.inc -------------------------------------------------------------------------------- /Time/time-hm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Time/time-hm.ini -------------------------------------------------------------------------------- /Time/time-hms.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Time/time-hms.ini -------------------------------------------------------------------------------- /Weather/weather.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/Weather/weather.ini -------------------------------------------------------------------------------- /dev/Layouts/Rainmeter.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/dev/Layouts/Rainmeter.ini -------------------------------------------------------------------------------- /dev/Plugins/Spotify/32bit/SpotifyPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/dev/Plugins/Spotify/32bit/SpotifyPlugin.dll -------------------------------------------------------------------------------- /dev/Plugins/Spotify/64bit/SpotifyPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/dev/Plugins/Spotify/64bit/SpotifyPlugin.dll -------------------------------------------------------------------------------- /dev/Plugins/Spotify/credits.txt: -------------------------------------------------------------------------------- 1 | Spotify Plugin 1.3.0.1 2 | .raptor 3 | https://forum.rainmeter.net/viewtopic.php?t=17077 4 | -------------------------------------------------------------------------------- /dev/elementary_preview_2017-07-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/dev/elementary_preview_2017-07-10.jpg -------------------------------------------------------------------------------- /dev/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/dev/header.bmp -------------------------------------------------------------------------------- /dev/readme-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyinghyrax/Elementary/HEAD/dev/readme-style.css --------------------------------------------------------------------------------