nixos_config/util/open_dailies.xsh

36 lines
1.1 KiB
Text
Raw Normal View History

2026-01-08 18:05:08 +01:00
import subprocess
dailies = [
"https://www.geoguessr.com/",
2026-01-27 12:46:36 +01:00
"https://timeguessr.com/",
"https://languageguessr.io/daily",
2026-01-30 16:41:25 +01:00
"https://flagle-game.com/daily",
"https://www.flagle.io/",
"https://flagsgame.net/",
"https://flagpixel.com/",
"https://geoworldle.com/flaggrid",
2026-01-30 22:23:45 +01:00
"https://flagdoku.com/",
2026-01-08 18:05:08 +01:00
"https://games.oec.world/en/tradle/",
"https://oec.world/en/games/connectrade/",
2026-01-30 16:41:25 +01:00
"https://geoconnections.net/",
2026-03-06 15:09:04 +01:00
"https://maptap.gg",
2026-01-30 16:41:25 +01:00
"https://travle.earth/",
2026-01-08 18:05:08 +01:00
"https://worldle.teuteuf.fr/",
2026-01-30 16:41:25 +01:00
"https://globle-game.com/game/",
2026-01-08 18:05:08 +01:00
"https://countryle.com/",
2026-01-27 12:46:36 +01:00
#"https://capitale.countryle.com/",
2026-01-30 16:41:25 +01:00
#"https://daydle.com/",
#"https://histordle.com/yeardle/",
"https://histordle.com/popcultured/",
2026-01-27 12:46:36 +01:00
"https://quizl.io/",
2026-01-08 18:05:08 +01:00
"https://angle.wtf/",
"https://playboardle.com/",
"https://www.chess.com/daily/",
2026-01-27 12:46:36 +01:00
"https://www.nytimes.com/games/connections/",
2026-01-08 18:05:08 +01:00
"https://redactle.net/",
2026-01-27 12:46:36 +01:00
"https://contexto.me/en/",
2026-01-08 18:05:08 +01:00
"https://www.codewars.com/dashboard/",
"https://leetcode.com/",
]
subprocess.run(["chromium", "--new-window"] + dailies)