mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2025-01-15 11:59:40 +03:00
16 lines
No EOL
413 B
Python
16 lines
No EOL
413 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def info():
|
|
inf = dict()
|
|
inf['name'] = 'screensaver'
|
|
inf['version'] = '1.0.0'
|
|
inf['support'] = 'debian'
|
|
inf['description'] = 'Screensaver plugin provides to changing Xscreensaver config file.'
|
|
inf['task'] = False
|
|
inf['user_oriented'] = True
|
|
inf['machine_oriented'] = True
|
|
inf['developer'] = 'mine.dogan@agem.com.tr'
|
|
|
|
return inf |