Example config

This commit is contained in:
Denis Zheleztsov 2015-07-22 11:42:47 +03:00
parent d705040ced
commit f0f3aae758
2 changed files with 16 additions and 1 deletions

View File

@ -1,7 +1,6 @@
import ast
import argparse
import os
from pprint import pprint
# Globals
config_path = os.environ['HOME'] + '/.config/azot/config.json'

16
config.sample.json Normal file
View File

@ -0,0 +1,16 @@
{
'actions': [
{
'corner': 'top',
'position_y': 'middle',
'type': 'notify',
'command': 'df -h'
},
{
'corner': 'left',
'position': 'bottom',
'type': 'exec',
'command': 'scrot'
}
]
}