├── .github
└── FUNDING.yml
├── .gitignore
├── .gitmodules
├── AnalogClock
├── AnalogClock.widget.zip
├── AnalogClock.widget
│ ├── AnalogClock-CentralUS.coffee
│ ├── AnalogClock-CustomFace.coffee
│ └── Faces
│ │ └── ClockFace.png
├── ReadMe.txt
├── screenshot.png
└── widget.json
├── BackgroundGrid
├── BackgroundGrid.widget.zip
├── BackgroundGrid.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── NetworkInfo
├── NetworkInfo.widget.zip
├── NetworkInfo.widget
│ ├── NetworkInfo.coffee
│ ├── NetworkInfo.sh
│ └── images
│ │ ├── ethernet.png
│ │ ├── ethernet_disabled.png
│ │ ├── wi-fi.png
│ │ └── wi-fi_disabled.png
├── screenshot.png
└── widget.json
├── README.md
├── SimpleDate
├── SimpleDate.widget.zip
├── index.coffee
├── screenshot.png
└── widget.json
├── Spotify-Current-Track
├── screenshot.png
├── spotify-current-track.widget.zip
├── spotify-current-track.widget
│ ├── README.md
│ └── index.coffee
└── widget.json
├── Today
├── Today.widget.zip
├── Today.widget
│ ├── TodayIn.coffee
│ ├── TodayIs.coffee
│ ├── TodaysNews.coffee
│ └── TodaysWord.coffee
├── screenshot.png
└── widget.json
├── WorldClock
├── WorldClock.widget.zip
├── WorldClock.widget
│ ├── WorldClock.sh
│ └── index.coffee
├── screenshot.png
└── widget.json
├── battery
├── battery.widget.zip
├── battery.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── btc-eur
├── btceur.coffee
├── btceur.widget.zip
├── screenshot.png
└── widget.json
├── btc-prices
├── btc-prices.widget.zip
├── btc-prices.widget
│ ├── LICENSE
│ ├── README.md
│ └── index.coffee
├── screenshot.png
└── widget.json
├── btc
├── btc.widget.zip
├── btc.widget
│ └── btc.coffee
├── screenshot.png
└── widget.json
├── calendar
├── README.txt
├── calendar.zip
├── index.coffee
├── screenshot.png
└── widget.json
├── disk-usage
├── disk-usage.widget.zip
├── disk-usage.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── fever-rss
├── fever-rss.widget.zip
├── fever-rss.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── german-word-of-the-day
├── german-word-of-the-day.widget.zip
├── german-word-of-the-day.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── iTunes-now
├── itunes-now.widget.zip
├── itunes-now.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── inspirational-quote
├── inspirational-quote.widget.zip
├── inspirational-quote.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── iostats
├── iostats.widget.zip
├── iostats.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── load-avg
├── load-avg.widget.zip
├── load-avg.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── mail
├── mail.widget.zip
├── mail.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── network-throughput
├── network-throughput.widget.zip
├── network-throughput.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── public_ip
├── public_ip.widget.zip
├── public_ip.widget
│ └── index.coffee
├── screenshot.png
└── widget.json
├── simple-stocks
├── screenshot.png
├── simple-stocks.widget.zip
├── simple-stocks.widget
│ └── index.coffee
└── widget.json
├── swap-usage
├── screenshot.png
├── swap-usage.widget.zip
├── swap-usage.widget
│ └── index.coffee
└── widget.json
├── sys-mon-set
├── screenshot.png
├── sys-mon-set.widget.zip
├── sys-mon-set.widget
│ ├── README.md
│ ├── battery.widget
│ │ └── index.coffee
│ ├── mini-top-mem.widget
│ │ └── index.coffee
│ ├── netstat.widget
│ │ ├── index.coffee
│ │ └── scripts
│ │ │ ├── netst
│ │ │ └── netst.c
│ ├── public_ip.widget
│ │ └── index.coffee
│ ├── simple-clock.widget
│ │ └── index.coffee
│ ├── top-cpu.widget
│ │ └── index.coffee
│ └── total-mem.widget
│ │ └── index.coffee
└── widget.json
├── to-do-list
├── screenshot.png
├── to-do-list.widget.zip
├── to-do-list
│ └── index.coffee
└── widget.json
├── top-cpu
├── screenshot.png
├── top-cpu.widget.zip
├── top-cpu.widget
│ └── index.coffee
└── widget.json
├── top-mem
├── screenshot.png
├── top-mem.widget.zip
├── top-mem.widget
│ └── index.coffee
└── widget.json
├── wildstar-server-status
├── screenshot.png
├── widget.json
├── wildstar-server-status.widget.zip
└── wildstar-server-status.widget
│ └── index.coffee
└── worldcup
├── screenshot.png
├── widget.json
├── worldcup.widget.zip
└── worldcup.widget
├── README.md
├── football.ico
├── index.coffee
└── worldcup.py
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: felixhageloh
2 | custom: https://bunq.me/fhageloh
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "weather"]
2 | path = weather
3 | url = git@github.com:felixhageloh/weather-widget.git
4 | [submodule "CPU-Usage-bar-Widget"]
5 | path = CPU-Usage-bar-Widget
6 | url = git@github.com:DaniBarca/CPU-Usage-bar-Widget.git
7 | [submodule "memory-bar"]
8 | path = memory-bar
9 | url = git@github.com:cobyism/ubersicht-memory-bar.git
10 | [submodule "simple-clock"]
11 | path = simple-clock
12 | url = git@github.com:soberstadt/simple-clock-widget.git
13 | [submodule "circleci-widget"]
14 | path = circleci-widget
15 | url = git@github.com:andremedeiros/circleci-widget.git
16 | [submodule "roundClock"]
17 | path = roundClock
18 | url = https://github.com/phaseOne/roundClock.git
19 | [submodule "mailcount"]
20 | path = mailcount
21 | url = git@github.com:wfalkwallace/mailcount.git
22 | [submodule "currency-converter"]
23 | path = currency-converter
24 | url = https://github.com/kikorb/currency-conversor.git
25 | [submodule "statuscake"]
26 | path = statuscake
27 | url = https://github.com/things/uebersicht-statuscake.git
28 | [submodule "tmstatus"]
29 | path = tmstatus
30 | url = https://github.com/rudders/tmstatus.git
31 | [submodule "batteryDetails.widget"]
32 | path = batteryDetails.widget
33 | url = https://github.com/bausi2k/batteryDetails.widget
34 | [submodule "only-this"]
35 | path = only-this
36 | url = https://github.com/bgartenmann/uebersicht-only-this-widget.git
37 | [submodule "Rdio-Widget"]
38 | path = Rdio-Widget
39 | url = https://github.com/larkov/Rdio-Widget.git
40 | [submodule "mbta-widget"]
41 | path = mbta-widget
42 | url = https://github.com/joshuaswilcox/mbta-widget
43 | [submodule "Stock-quotes-Widget"]
44 | path = Stock-quotes-Widget
45 | url = https://github.com/edasque/Stock-quotes-Widget
46 | [submodule "ScoreTicker"]
47 | path = ScoreTicker
48 | url = https://github.com/jckimmel/ScoreTicker
49 | [submodule "CurrLocation"]
50 | path = CurrLocation
51 | url = https://github.com/jckimmel/CurrLocation
52 | [submodule "horizontal-calendar-widget"]
53 | path = horizontal-calendar-widget
54 | url = https://github.com/ashikahmad/horizontal-calendar-widget
55 | [submodule "prayer-time-widget"]
56 | path = prayer-time-widget
57 | url = https://github.com/ashikahmad/prayer-time-widget
58 | [submodule "analog-clock-widget"]
59 | path = analog-clock-widget
60 | url = https://github.com/ashikahmad/analog-clock-widget
61 | [submodule "SPS"]
62 | path = SPS
63 | url = https://github.com/wilsongis/uebersicht-SPS_Widget
64 | [submodule "bart-widget"]
65 | path = bart-widget
66 | url = https://github.com/MatisseHack/bart-widget
67 | [submodule "craigslist"]
68 | path = craigslist
69 | url = https://github.com/stursby/uebersicht-craigslist
70 | [submodule "things.widget"]
71 | path = things.widget
72 | url = https://github.com/digitalbias/things.widget
73 | [submodule "cjdns"]
74 | path = cjdns
75 | url = https://github.com/lukevers/uber-cjdns.git
76 | [submodule "vertical-calendar"]
77 | path = vertical-calendar
78 | url = https://github.com/ziti/uebersicht-calendar-widget
79 | [submodule "d3-clock"]
80 | path = d3-clock
81 | url = https://github.com/cmaurer/d3-clock-uebersicht-widget.git
82 | [submodule "weathernow"]
83 | path = weathernow
84 | url = https://github.com/briandconnelly/weathernow-widget
85 | [submodule "trello"]
86 | path = trello
87 | url = https://github.com/NickBusey/Ubersicht-Trello-Widget
88 | [submodule "muni.widget"]
89 | path = muni.widget
90 | url = https://github.com/dmaurath/muni.widget.git
91 | [submodule "slideshow"]
92 | path = slideshow
93 | url = https://github.com/mpandrews2000/slideshow.git
94 | [submodule "git-log"]
95 | path = git-log
96 | url = https://github.com/DigitallyBorn/Ubersicht-Git-Log.git
97 | [submodule "wunderlist-tasks"]
98 | path = wunderlist-tasks
99 | url = https://github.com/NikitaBazhenov/UbersichtWunderlistTasks
100 | [submodule "Youtube-Channel"]
101 | path = Youtube-Channel
102 | url = https://github.com/atika/Ubersicht-Youtube
103 | [submodule "countdown"]
104 | path = countdown
105 | url = https://github.com/anuragbakshi/Countdown-Widget
106 | [submodule "fever-hotlinks"]
107 | path = fever-hotlinks
108 | url = https://github.com/telega/fever-widget.git
109 | [submodule "GitFinder"]
110 | path = GitFinder
111 | url = https://github.com/atika/Ubersicht-GitFinder
112 | [submodule "ical-widget"]
113 | path = ical-widget
114 | url = https://github.com/djbrooks111/ical-widget.git
115 | [submodule "Set-networking"]
116 | path = Set-networking
117 | url = https://github.com/brookesdjb/Set-networking.widget
118 | [submodule "github-notifications"]
119 | path = github-notifications
120 | url = https://github.com/mtscout6/uebersicht-github-notifications.git
121 | [submodule "gcal-widget"]
122 | path = gcal-widget
123 | url = https://github.com/mattk410/gcal-widget
124 | [submodule "authentic-weather"]
125 | path = authentic-weather
126 | url = https://github.com/reduxd/authentic-ubersicht.git
127 | [submodule "pretty-weather"]
128 | path = pretty-weather
129 | url = https://github.com/felixhageloh/pretty-weather.git
130 | [submodule "omnifocus-widget"]
131 | path = omnifocus-widget
132 | url = https://github.com/fitzagard/omnifocus-widget.git
133 | [submodule "ping-history"]
134 | path = ping-history
135 | url = https://github.com/bonus-tm/uebersicht-ping-history.widget.git
136 | [submodule "cpu-bar"]
137 | path = cpu-bar
138 | url = https://github.com/PerishableDave/ubersicht-cpu-bar.git
139 | [submodule "anydo"]
140 | path = anydo
141 | url = https://github.com/mislavcimpersak/anydo-widget
142 | [submodule "CoverArt"]
143 | path = CoverArt
144 | url = https://github.com/slowburn/CoverArt
145 | [submodule "grid-launcher"]
146 | path = grid-launcher
147 | url = https://github.com/ddgond/uebersicht-grid-launcher
148 | [submodule "trash-size"]
149 | path = trash-size
150 | url = https://github.com/MrKireko/trash-size.git
151 | [submodule "battery-charge"]
152 | path = battery-charge
153 | url = https://github.com/bcseda/BatteryCharge.git
154 | [submodule "uberist"]
155 | path = uberist
156 | url = https://github.com/chagel/uberist.git
157 | [submodule "earth_view"]
158 | path = earth_view
159 | url = https://github.com/Maggick-/earth_view
160 | [submodule "markdown_cheat_sheet"]
161 | path = markdown_cheat_sheet
162 | url = https://github.com/jacksonfylle/Ubersicht
163 | [submodule "morning"]
164 | path = morning
165 | url = git@github.com:imRohan/ubersicht-morning.widget.git
166 | [submodule "macports"]
167 | path = macports
168 | url = git@github.com:Maggick-/macports.git
169 | [submodule "jenkins"]
170 | path = jenkins
171 | url = https://github.com/piresbruno/uebersicht-jenkins
172 | [submodule "google-cal"]
173 | path = google-cal
174 | url = https://github.com/dimitri-koenig/uebersicht-widget-for-google-cal
175 | [submodule "swiss-sbb-connections"]
176 | path = swiss-sbb-connections
177 | url = git@github.com:dimitri-koenig/uebersicht-widget-for-swiss-transport-data.git
178 | [submodule "Time-in-Words"]
179 | path = Time-in-Words
180 | url = https://github.com/behoernchen/Time-in-Words.git
181 | [submodule "outdated-brew-formulae"]
182 | path = outdated-brew-formulae
183 | url = https://github.com/gregmajor/ubersicht-outdated-brew-formulae-widget
184 | [submodule "sys-monitor"]
185 | path = sys-monitor
186 | url = https://github.com/kporten/uebersicht-sys-monitor.git
187 | [submodule "multiple-locations-weather"]
188 | path = multiple-locations-weather
189 | url = https://github.com/rabad/uebersicht-multiple-locations-weather
190 | [submodule "lol-stats"]
191 | path = lol-stats
192 | url = git@github.com:Xcrucifier/lol-stats-widget.git
193 | [submodule "lol-current-game"]
194 | path = lol-current-game
195 | url = git@github.com:Baxter900/lol-current-game.git
196 | [submodule "animated-background"]
197 | path = animated-background
198 | url = https://github.com/Baxter900/background-widget
199 | [submodule "blur-widget"]
200 | path = blur-widget
201 | url = https://github.com/atika/Ubersicht-Blur
202 | [submodule "time-of-angels"]
203 | path = time-of-angels
204 | url = https://github.com/cytec/uebersicht-time-of-angels
205 | [submodule "Nightshades"]
206 | path = Nightshades
207 | url = git@github.com:Porco-Rosso/Ubersicht-Nightshades.git
208 | [submodule "Circular-CPU"]
209 | path = Circular-CPU
210 | url = https://github.com/zanderp/Mac-CPU-Widget
211 | [submodule "circular-liquid-battery-widget"]
212 | path = circular-liquid-battery-widget
213 | url = https://github.com/zanderp/circular-liquid-battery-widget
214 | [submodule "Circular-RAM"]
215 | path = Circular-RAM
216 | url = git@github.com:zanderp/circular-ram-widget.git
217 | [submodule "Unread-Messages.widget"]
218 | path = mail-and-messages.widget
219 | url = https://github.com/travtrigs/Unread-Messages.widget
220 | [submodule "Mandarin-Chinese-Word-Of-The-Day-widget"]
221 | path = Mandarin-Chinese-Word-Of-The-Day-widget
222 | url = git@github.com:himynameisbeni/Mandarin-Chinese-Word-Of-The-Day-widget.git
223 | [submodule "app-launcher"]
224 | path = app-launcher
225 | url = https://github.com/travtrigs/app-launcher.widget
226 | [submodule "folder-launcher"]
227 | path = folder-launcher
228 | url = git@github.com:travtrigs/folder-launcher.widget.git
229 | [submodule "sticky-notes-ubersicht"]
230 | path = sticky-notes-ubersicht
231 | url = git@github.com:zanderp/sticky-notes-ubersicht.git
232 | [submodule "Yr4u"]
233 | path = Yr4u
234 | url = git@github.com:larkov/Yr4Ubersicht.git
235 | [submodule "solar-system.widget"]
236 | path = solar-system.widget
237 | url = git@github.com:travtrigs/solar-system.widget.git
238 | [submodule "Evangelion"]
239 | path = Evangelion
240 | url = https://github.com/jeticg/Evangelion-Uebersicht-Widget
241 | [submodule "DiskUsage-Bar"]
242 | path = DiskUsage-Bar
243 | url = https://github.com/dinever/DiskUsage-Bar-Widget
244 | [submodule "bluetooth-battery-bar"]
245 | path = bluetooth-battery-bar
246 | url = git@github.com:gschrader/ubersicht-bluetooth-battery-bar.git
247 | [submodule "DailyBibleVerse"]
248 | path = DailyBibleVerse
249 | url = git@github.com:justiceamoh/DailyBibleVerse.git
250 | [submodule "Xkcd-now"]
251 | path = Xkcd-now
252 | url = https://github.com/AlataMors/Ubersicht-Xkcd-now
253 | [submodule "iTunesMiniPlayer.widget"]
254 | path = iTunesMiniPlayer.widget
255 | url = git@github.com:jscampos/iTunesMiniPlayer.widget.git
256 | [submodule "words-worldclock"]
257 | path = words-worldclock
258 | url = git@github.com:wrutkowski/ubericht-wordclock.git
259 | [submodule "kindle-random-quote"]
260 | path = kindle-random-quote
261 | url = git@github.com:apletnev/ubersicht-kindle-random-quote.git
262 | [submodule "xkcd-random"]
263 | path = xkcd-random
264 | url = git@github.com:PapyPev/xkcd-random.widget.git
265 | [submodule "lastfm"]
266 | path = lastfm
267 | url = git@github.com:patrickhpan/lastfm-ubersicht.git
268 | [submodule "video-widget"]
269 | path = video-widget
270 | url = https://github.com/paulbhartzog/ubersicht-video-widget
271 | [submodule "istats.widget"]
272 | path = istats.widget
273 | url = git@github.com:roele/istats.widget.git
274 | [submodule "stackexchange.widget"]
275 | path = stackexchange.widget
276 | url = git@github.com:d4rkd3v1l/uebersicht-stackexchange.widget.git
277 | [submodule "git-stats.widget"]
278 | path = git-stats.widget
279 | url = git@github.com:d4rkd3v1l/uebersicht-git-stats.widget.git
280 | [submodule "FancyDateTime"]
281 | path = FancyDateTime
282 | url = git@github.com:codeFareith/uebersicht-FancyDateTime.git
283 | [submodule "SolTunes.widget"]
284 | path = SolTunes.widget
285 | url = git@github.com:yohnnyjoe/SolTunes.widget.git
286 | [submodule "apod-view"]
287 | path = apod-view
288 | url = https://github.com/KiwiSkunk/apod-view.widget
289 | [submodule "youtube-video"]
290 | path = youtube-video
291 | url = https://github.com/paulbhartzog/ubersicht-youtube-video-widget
292 | [submodule "Hangu-Word-Clock"]
293 | path = Hangu-Word-Clock
294 | url = https://github.com/openmaya/Uebersicht-Hangul-Word-Clock.git
295 | [submodule "lightroom-latest"]
296 | path = lightroom-latest
297 | url = https://github.com/evanfuture/lightroom-latest.widget.git
298 | [submodule "bar"]
299 | path = bar
300 | url = https://github.com/callahanrts/bar.git
301 | [submodule "zendesk"]
302 | path = zendesk
303 | url = https://github.com/unglud/ubersicht-zendesk
304 | [submodule "fuzzytime"]
305 | path = fuzzytime
306 | url = https://github.com/plan8studios/fuzzytime
307 | [submodule "usefulinfo"]
308 | path = usefulinfo
309 | url = https://github.com/justinellingson/usefulinfowidget
310 | [submodule "backgroundwidget"]
311 | path = backgroundwidget
312 | url = https://github.com/roach0123/backgroundwidget
313 | [submodule "forecast"]
314 | path = forecast
315 | url = https://github.com/uPaymeiFixit/forecast-widget
316 | [submodule "binari-clock"]
317 | path = binari-clock
318 | url = https://github.com/jeisner93/ubersicht-binary-clock
319 | [submodule "now-playing"]
320 | path = now-playing
321 | url = https://github.com/levifig/now-playing.widget
322 | [submodule "TaskwarriorWidget"]
323 | path = TaskwarriorWidget
324 | url = git@github.com:KevinBockelandt/TaskwarriorWidget.git
325 | [submodule "Sidebar"]
326 | path = Sidebar
327 | url = https://github.com/Pe8er/Sidebar.Widget
328 | [submodule "Playbox"]
329 | path = Playbox
330 | url = https://github.com/Pe8er/Playbox.Widget
331 | [submodule "coding-net-notifications.widget"]
332 | path = coding-net-notifications.widget
333 | url = https://github.com/IUsual/coding-net-notifications.widget
334 | [submodule "minimal-forecast-widget"]
335 | path = minimal-forecast-widget
336 | url = https://github.com/cpmsmith/minimal-forecast-widget.git
337 | [submodule "RemindersWidget"]
338 | path = RemindersWidget
339 | url = https://github.com/davidlday/RemindersWidget
340 | [submodule "ubersicht-network-throughput"]
341 | path = ubersicht-network-throughput
342 | url = git@github.com:dionmunk/ubersicht-network-throughput.git
343 | [submodule "Strava.widget"]
344 | path = Strava.widget
345 | url = git@github.com:Pe8er/Strava.widget.git
346 | [submodule "Docker-Uber-Stats"]
347 | path = Docker-Uber-Stats
348 | url = git@github.com:Paradiddley/Docker-Uber-Stats.git
349 | [submodule "Simple-Uber-System-Status"]
350 | path = Simple-Uber-System-Status
351 | url = git@github.com:Paradiddley/Simple-Uber-System-Status.git
352 | [submodule "Simple-Uber-Device-Status"]
353 | path = Simple-Uber-Device-Status
354 | url = git@github.com:Paradiddley/Simple-Uber-Device-Status.git
355 | [submodule "Simple-Uber-Disk-Usage"]
356 | path = Simple-Uber-Disk-Usage
357 | url = git@github.com:Paradiddley/Simple-Uber-Disk-Usage.git
358 | [submodule "mail-count-read.widget"]
359 | path = mail-count-read.widget
360 | url = https://github.com/roadglide03/mail-count-read.widget.git
361 | [submodule "vms.widget"]
362 | path = vms.widget
363 | url = https://github.com/roadglide03/vms.widget.git
364 | [submodule "justthedate"]
365 | path = justthedate
366 | url = https://github.com/ruurd/justthedate
367 | [submodule "XiamiFM"]
368 | path = XiamiFM
369 | url = https://github.com/ProfFan/Ubersicht-XiamiFM
370 | [submodule "iTunesLyrics.widget"]
371 | path = iTunesLyrics.widget
372 | url = git@github.com:Pe8er/iTunesLyrics.widget.git
373 | [submodule "moon-phase"]
374 | path = moon-phase
375 | url = git@github.com:joecreighton/moon-phase.git
376 | [submodule "ubersicht-putio"]
377 | path = ubersicht-putio
378 | url = https://github.com/gitzerai/ubersicht-putio
379 | [submodule "minimal-github-widgit"]
380 | path = minimal-github-widgit
381 | url = https://github.com/eanplatter/minimal-github-widgit
382 | [submodule "aoede"]
383 | path = aoede
384 | url = https://github.com/pyraxo/aoede
385 | [submodule "air-quality.widget"]
386 | path = air-quality.widget
387 | url = https://github.com/FanZhen2002/air-quality.widget
388 | [submodule "time_since"]
389 | path = time_since
390 | url = https://github.com/johnmathews/time_since
391 | [submodule "doviz-ticker"]
392 | path = doviz-ticker
393 | url = https://github.com/xcolor/doviz-ticker
394 | [submodule "time_until"]
395 | path = time_until
396 | url = https://github.com/johnmathews/time_until
397 | [submodule "UpcomingEvents"]
398 | path = UpcomingEvents
399 | url = https://github.com/cbeardsmore/UpcomingEvents
400 | [submodule "WiFi-Tx-Speed"]
401 | path = WiFi-Tx-Speed
402 | url = https://github.com/mactexan/WiFi-Tx-Speed
403 | [submodule "kaspersky-threats"]
404 | path = kaspersky-threats
405 | url = https://github.com/mactexan/kaspersky-threats
406 | [submodule "longviewer-widget"]
407 | path = longviewer-widget
408 | url = https://github.com/telega/longviewer-widget
409 | [submodule "Daily-Random-Kanji"]
410 | path = Daily-Random-Kanji
411 | url = https://github.com/cbeardsmore/Daily-Random-Kanji
412 | [submodule "ubersichtGitInfo"]
413 | path = ubersichtGitInfo
414 | url = https://github.com/synle/ubersichtGitInfo
415 | [submodule "JapaneseCalendar-widget"]
416 | path = JapaneseCalendar-widget
417 | url = https://github.com/Gr3yR0n1n/JapaneseCalendar-widget
418 | [submodule "ubersicht-currentKeymap"]
419 | path = ubersicht-currentKeymap
420 | url = https://github.com/KryDos/ubersicht-currentKeymap
421 | [submodule "minimal_weather"]
422 | path = minimal_weather
423 | url = https://github.com/sungjp/minimal_weather
424 | [submodule "netspeeds-widget"]
425 | path = netspeeds-widget
426 | url = https://github.com/cschoenfeld/netspeeds-widget
427 | [submodule "ubersicht-astronauts"]
428 | path = ubersicht-astronauts
429 | url = https://github.com/LePhil/ubersicht-astronauts
430 | [submodule "uebersicht-sensu"]
431 | path = uebersicht-sensu
432 | url = https://github.com/GhostLyrics/uebersicht-sensu
433 | [submodule "word-of-the.widget"]
434 | path = word-of-the.widget
435 | url = https://github.com/evanfuture/word-of-the.widget
436 | [submodule "ubersicht-now-playing"]
437 | path = ubersicht-now-playing
438 | url = https://github.com/dionmunk/ubersicht-now-playing
439 | [submodule "tsushin"]
440 | path = tsushin
441 | url = https://github.com/louixs/tsushin
442 | [submodule "WiFi-SSID-Widget"]
443 | path = WiFi-SSID-Widget
444 | url = https://github.com/mactexan/WiFi-SSID-Widget
445 | [submodule "Plexpy-Ubersicht-Widget"]
446 | path = Plexpy-Ubersicht-Widget
447 | url = https://github.com/yoyostile/Plexpy-Ubersicht-Widget
448 | [submodule "Black-Bar-Widget"]
449 | path = Black-Bar-Widget
450 | url = https://github.com/jrb12364/Black-Bar-Widget
451 | [submodule "commandment-11"]
452 | path = commandment-11
453 | url = https://github.com/cscharff/commandment-11
454 | [submodule "SmoothAnalogClock.widget"]
455 | path = SmoothAnalogClock.widget
456 | url = https://github.com/N00bySumairu/SmoothAnalogClock.widget
457 | [submodule "uebersicht-wiki-holidays.widget"]
458 | path = uebersicht-wiki-holidays.widget
459 | url = https://github.com/DiSiqueira/uebersicht-wiki-holidays.widget
460 | [submodule "sunradar"]
461 | path = sunradar
462 | url = https://github.com/lakiryt/sunradar/
463 | [submodule "ubersicht_gmail"]
464 | path = ubersicht_gmail
465 | url = https://github.com/louixs/ubersicht_gmail
466 | [submodule "ubersicht_google_calendar"]
467 | path = ubersicht_google_calendar
468 | url = https://github.com/louixs/ubersicht_google_calendar
469 | [submodule "stravasicht"]
470 | path = stravasicht
471 | url = https://github.com/draganmarjanovic/stravasicht
472 | [submodule "reddit-karma.widget"]
473 | path = reddit-karma.widget
474 | url = https://github.com/z3t0/reddit-karma.widget
475 | [submodule "ubersicht_tasks"]
476 | path = ubersicht_tasks
477 | url = https://github.com/louixs/ubersicht_tasks
478 | [submodule "pic-display.widget"]
479 | path = pic-display.widget
480 | url = https://github.com/Trapper777/pic-display.widget
481 | [submodule "daily-xkcd-uebersicht-widget"]
482 | path = daily-xkcd-uebersicht-widget
483 | url = https://github.com/dalemanthei/daily-xkcd-uebersicht-widget
484 | [submodule "wttr-moon-uebersicht"]
485 | path = wttr-moon-uebersicht
486 | url = https://github.com/matthias-vogt/wttr-moon-uebersicht
487 | [submodule "wttr-uebersicht"]
488 | path = wttr-uebersicht
489 | url = https://github.com/matthias-vogt/wttr-uebersicht
490 | [submodule "uebersicht-github-activity"]
491 | path = uebersicht-github-activity
492 | url = https://github.com/shadowfacts/uebersicht-github-activity
493 | [submodule "ToDo"]
494 | path = ToDo
495 | url = https://github.com/illuminati945/ToDo
496 | [submodule "Ubersicht-Matrix"]
497 | path = Ubersicht-Matrix
498 | url = https://github.com/Porco-Rosso/Ubersicht-Matrix
499 | [submodule "ubersicht-docker-containers"]
500 | path = ubersicht-docker-containers
501 | url = https://github.com/pauloamgomes/ubersicht-docker-containers
502 | [submodule "Ubersicht_zendesk_jg"]
503 | path = Ubersicht_zendesk_jg
504 | url = https://github.com/jagalbraith/Ubersicht_zendesk_jg
505 | [submodule "uebersicht-taskpaper"]
506 | path = uebersicht-taskpaper
507 | url = https://github.com/flow7/uebersicht-taskpaper
508 | [submodule "todolist-widget"]
509 | path = todolist-widget
510 | url = https://github.com/Langhaarzombie/todolist-widget
511 | [submodule "RSSs_Ubersicht_Widget"]
512 | path = RSSs_Ubersicht_Widget
513 | url = https://github.com/edasque/RSSs_Ubersicht_Widget
514 | [submodule "valerian-time"]
515 | path = valerian-time
516 | url = https://github.com/arminrosu/valerian-time
517 | [submodule "bingwall"]
518 | path = bingwall
519 | url = https://github.com/alebertacco/bingwall
520 | [submodule "vsts.widget"]
521 | path = vsts.widget
522 | url = https://github.com/GregaVrbancic/vsts.widget
523 | [submodule "led-clock"]
524 | path = led-clock
525 | url = https://github.com/imranzahid01/led-clock
526 | [submodule "uebersicht-ethereum-usd-price"]
527 | path = uebersicht-ethereum-usd-price
528 | url = https://github.com/AdrienKuhn/uebersicht-ethereum-usd-price
529 | [submodule "Ubersicht-DiskUsage-bar"]
530 | path = Ubersicht-DiskUsage-bar
531 | url = https://github.com/onishy/Ubersicht-DiskUsage-bar
532 | [submodule "conky-for-mac"]
533 | path = conky-for-mac
534 | url = https://github.com/dumbo25/conky-for-mac
535 | [submodule "cryptowidget"]
536 | path = cryptowidget
537 | url = https://github.com/avocadomaster/cryptowidget
538 | [submodule "uebersicht-central-logo-widget"]
539 | path = uebersicht-central-logo-widget
540 | url = https://github.com/aykot/uebersicht-central-logo-widget
541 | [submodule "todo.txt-widget"]
542 | path = todo.txt-widget
543 | url = https://github.com/16kRAMpack/todo.txt-widget
544 | [submodule "commands-feed.widget"]
545 | path = commands-feed.widget
546 | url = https://github.com/smartameer/commands-feed.widget
547 | [submodule "mini-system-charts.widget"]
548 | path = mini-system-charts.widget
549 | url = https://github.com/aprowe/mini-system-charts.widget
550 | [submodule "scrolling-cpu-meter"]
551 | path = scrolling-cpu-meter
552 | url = https://github.com/FunkyQChicken/scrolling-cpu-meter
553 | [submodule "uebersicht_ch_meteo_widget"]
554 | path = uebersicht_ch_meteo_widget
555 | url = https://github.com/gbuendia/uebersicht_ch_meteo_widget
556 | [submodule "uebersicht_polizeiticker_widget"]
557 | path = uebersicht_polizeiticker_widget
558 | url = https://github.com/gbuendia/uebersicht_polizeiticker_widget
559 | [submodule "trellocard"]
560 | path = trellocard
561 | url = https://github.com/guxsousa/trellocard
562 | [submodule "ubersicht-wanikani"]
563 | path = ubersicht-wanikani
564 | url = https://github.com/jakeoid/ubersicht-wanikani
565 | [submodule "uebersicht-widget-public_ip"]
566 | path = uebersicht-widget-public_ip
567 | url = https://github.com/i07/uebersicht-widget-public_ip
568 | [submodule "uebersicht-binary-clock.widget"]
569 | path = uebersicht-binary-clock.widget
570 | url = https://github.com/Dellos7/uebersicht-binary-clock.widget/
571 | [submodule "wttr"]
572 | path = wttr
573 | url = https://github.com/bkroggel/wttr
574 | [submodule "uebersicht-spotify-adsilencer.widget"]
575 | path = uebersicht-spotify-adsilencer.widget
576 | url = https://github.com/Dellos7/uebersicht-spotify-adsilencer.widget
577 | [submodule "cuteical.widget"]
578 | path = cuteical.widget
579 | url = https://github.com/ctakemoto/cuteical.widget
580 | [submodule "WunderlistTasksWidget"]
581 | path = WunderlistTasksWidget
582 | url = https://github.com/Makiah/WunderlistTasksWidget
583 | [submodule "reddit-overview.widget"]
584 | path = reddit-overview.widget
585 | url = https://github.com/diceroll123/reddit-overview.widget
586 | [submodule "byrthdays.widget"]
587 | path = byrthdays.widget
588 | url = https://github.com/olfuerniss/byrthdays.widget
589 | [submodule "litecoin-widget"]
590 | path = litecoin-widget
591 | url = https://github.com/plan8studios/litecoin-widget
592 |
--------------------------------------------------------------------------------
/AnalogClock/AnalogClock.widget.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/felixhageloh/uebersicht-widgets/8dd6cbec71a13f569c3ef8ed5d56089b2312ee1b/AnalogClock/AnalogClock.widget.zip
--------------------------------------------------------------------------------
/AnalogClock/AnalogClock.widget/AnalogClock-CentralUS.coffee:
--------------------------------------------------------------------------------
1 | # Execute the shell command.
2 | command: 'export TZ="US/Central";date +"%m/%d/%Y %I:%M:%S %p"'
3 |
4 | # Set the refresh frequency (milliseconds).
5 | refreshFrequency: 1000
6 |
7 | # CSS Style
8 | style: """
9 | top:40px
10 | left:260px
11 | margin:0px
12 | padding:0px
13 |
14 | #clockImage
15 | display:none
16 |
17 | #clockLabel
18 | display:none
19 | """
20 |
21 | # Render the output.
22 | render: (output) -> """
23 |
24 |
25 |
" tags in the feed. 46 | if parCount > 0 47 | dom.find(description).html(dom.find(description).find('p')[0].innerHTML) 48 | dom.find(footer).html('Read ' + parCount + ' more paragraphs at http://www.history.com/this-day-in-history') 49 | 50 | # CSS Style 51 | style: """ 52 | top:480px 53 | left: 20px 54 | width:400px 55 | margin:0px 56 | padding:0px 57 | background:rgba(#FFF, 0.5) 58 | border:2px solid rgba(#000, 0.5) 59 | border-radius:10px 60 | overflow:hidden 61 | 62 | #date 63 | margin:12pt 64 | margin-bottom:0 65 | font-family: Helvetica 66 | font-size: 42pt 67 | font-weight:bold 68 | color: rgba(#FFF, 0.75) 69 | 70 | #title 71 | margin-left:12pt 72 | margin-right:12pt 73 | xxmargin-bottom:-10pt 74 | font-family: American Typewriter 75 | font-size: 20pt 76 | font-weight:bold 77 | 78 | #description 79 | margin-left:12pt 80 | margin-right:12pt 81 | font-family: American Typewriter 82 | font-size: 12pt 83 | line-height:18pt 84 | max-height:124pt 85 | overflow:hidden 86 | hyphens: auto 87 | 88 | #footer 89 | font-family: Helvetica 90 | font-size: 9pt 91 | margin:12pt 92 | color: rgba(#000, 0.5) 93 | """ 94 | -------------------------------------------------------------------------------- /Today/Today.widget/TodayIs.coffee: -------------------------------------------------------------------------------- 1 | # Execute the shell command. 2 | command: '' 3 | 4 | # Set the refresh frequency (milliseconds). 5 | refreshFrequency: 7200000 6 | 7 | # Render the output. 8 | render: (output) -> """ 9 |
0 | 13 ||
Sunday | 16 |January | 18 |0000 | 19 | 20 |
€#{o} | 45 |
U$#{o} | 45 |
#{output}
27 | """ 28 | -------------------------------------------------------------------------------- /iTunes-now/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixhageloh/uebersicht-widgets/8dd6cbec71a13f569c3ef8ed5d56089b2312ee1b/iTunes-now/screenshot.png -------------------------------------------------------------------------------- /iTunes-now/widget.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Now Playing in iTunes", 3 | "description": "Shows the name, artist and album of the current song in iTunes", 4 | "author": "Patrick Braiden", 5 | "email": "me@padge.eu" 6 | } 7 | -------------------------------------------------------------------------------- /inspirational-quote/inspirational-quote.widget.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixhageloh/uebersicht-widgets/8dd6cbec71a13f569c3ef8ed5d56089b2312ee1b/inspirational-quote/inspirational-quote.widget.zip -------------------------------------------------------------------------------- /inspirational-quote/inspirational-quote.widget/index.coffee: -------------------------------------------------------------------------------- 1 | command: 'curl -s "http://feeds.feedburner.com/brainyquote/QUOTEBR"' 2 | 3 | refreshFrequency: 30000 4 | 5 | style: """ 6 | bottom: 0px 7 | right: 0px 8 | color: #fff 9 | font-family: Helvetica Neue 10 | 11 | 12 | .output 13 | padding: 5px 10px 14 | width: 300px 15 | font-size: 20px 16 | font-weight: lighter 17 | font-smoothing: antialiased 18 | 19 | .author, .example, .example-meaning 20 | text-transform: capitalize 21 | font-size: 14px 22 | .author 23 | text-align: right 24 | """ 25 | 26 | render: (output) -> """ 27 |59 | | 60 | | 61 | |
#{label}
" + 76 | "56 | | 57 | | 58 | |
#{label}
" + 70 | "0.00 KB/s IN |
63 | 0.00 KB/s OUT |
64 |
Loading... |
59 | | 60 | | 61 | |
#{name}
" + 72 | "In:
30 |Out:
31 |51 | | 52 | | 53 | |
#{name}
" + 64 | "55 | | 56 | | 57 | | 58 | |
#{type}
" + 69 | "65 | | 66 | | 67 | |
#{name}
" + 78 | "66 | | 67 | | 68 | |
#{name}
" + 79 | "55 | | 56 | |
---|---|
59 | | 60 | |
#{name} (#{type})
" 70 | 71 | renderStatus = (status) -> 72 | "#{status}" 73 | 74 | for server, i in servers 75 | data = JSON.parse(server)[0] 76 | table.find(".name#{i+1}").html renderName(data.Name, data.Type) 77 | table.find(".status#{i+1}").html renderStatus(data.Status) 78 | -------------------------------------------------------------------------------- /worldcup/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixhageloh/uebersicht-widgets/8dd6cbec71a13f569c3ef8ed5d56089b2312ee1b/worldcup/screenshot.png -------------------------------------------------------------------------------- /worldcup/widget.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "worldcup", 3 | "description": "Display today's worldcup matches", 4 | "author": "Michael Goldmann", 5 | "email": "gooldmann.michael@gmail.com" 6 | } 7 | -------------------------------------------------------------------------------- /worldcup/worldcup.widget.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixhageloh/uebersicht-widgets/8dd6cbec71a13f569c3ef8ed5d56089b2312ee1b/worldcup/worldcup.widget.zip -------------------------------------------------------------------------------- /worldcup/worldcup.widget/README.md: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | 3 | * python 4 | 5 | # Credits 6 | 7 | * Icon by AHA-SOFT (http://www.aha-soft.com) 8 | -------------------------------------------------------------------------------- /worldcup/worldcup.widget/football.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixhageloh/uebersicht-widgets/8dd6cbec71a13f569c3ef8ed5d56089b2312ee1b/worldcup/worldcup.widget/football.ico -------------------------------------------------------------------------------- /worldcup/worldcup.widget/index.coffee: -------------------------------------------------------------------------------- 1 | command: "worldcup.widget/worldcup.py" 2 | 3 | refreshFrequency: 60000 4 | 5 | style: """ 6 | top: 260px; 7 | right: 1% 8 | color: #fff 9 | font-family: Helvetica Neue 10 | font-size: 10pt 11 | text-align: right 12 | 13 | h1 14 | font-size: 12pt 15 | .img 16 | margin-right: 10px 17 | """ 18 | 19 | render: (_) -> """ 20 |
{team1} {goals} {team2}, 30 | {start_time}
""".format(team1=match.get("home_team").get("code"), 31 | team2=match.get("away_team").get("code"), 32 | goals=goals, 33 | start_time=matchtime.strftime("%a %H:%M")) 34 | 35 | except Exception: 36 | print "n/A" --------------------------------------------------------------------------------