empty commit message.

This commit is contained in:
alisceon 2025-12-11 20:23:32 +01:00
parent e6a12adc45
commit 587ce85485
6 changed files with 101 additions and 39 deletions

View file

@ -0,0 +1,5 @@
files = $(fd \.desktop$ /nix/store)
xdg_desktops = set()
for file in files.splitlines():
xdg_desktops.add(file.split('/')[-1])
print('\n'.join([x for x in sorted(xdg_desktops) if x]))