mirror of
https://bitbucket.org/smil3y/ariya-icons.git
synced 2025-02-23 10:32:47 +00:00
12 lines
No EOL
226 B
Python
12 lines
No EOL
226 B
Python
#!/bin/python
|
|
|
|
import libmisc
|
|
|
|
misc = libmisc.Misc()
|
|
|
|
oxy = misc.list_files('/share/icons/oxygen/')
|
|
ary = misc.list_files('/share/icons/ariya/')
|
|
|
|
for f in oxy:
|
|
if not f.replace('oxygen/', 'ariya/') in ary:
|
|
print(f) |