diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-06-17 00:50:13 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-06-17 00:50:13 +1000 |
| commit | 23940565dedee76c4a854f6dea70aa8610102648 (patch) | |
| tree | 316a81e26c8333c7b8d79f5e46cc5ee0e61ae3b2 /wal.py | |
General: Initial files
Diffstat (limited to 'wal.py')
| -rw-r--r-- | wal.py | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,25 @@ +import argparse + + +def get_args(): + parser = argparse.ArgumentParser(description='wal - Generate colorschemes on the fly') + parser.add_argument('-a', help='Set terminal background transparency. *Only works in URxvt*', metavar='0-100', type=int) + parser.add_argument('-c', help='Delete all cached colorschemes.', action='store_true') + parser.add_argument('-f', help='Load colors directly from a colorscheme file.', metavar='"/path/to/colors"') + parser.add_argument('-i', help='Which image or directory to use.', metavar='"/path/to/img.jpg"') + parser.add_argument('-n', help='Skip setting the wallpaper.', action='store_true') + parser.add_argument('-o', help='External script to run after "wal".', metavar='script_name') + parser.add_argument('-q', help='Quiet mode, don\'t print anything.', action='store_true') + parser.add_argument('-r', help='Reload current colorscheme.', action='store_true') + parser.add_argument('-t', help='Fix artifacts in VTE Terminals. (Termite, xfce4-terminal)', action='store_true') + parser.add_argument('-x', help='Use extended 16-color palette.', action='store_true') + args = parser.parse_args() + return args + + +def main(): + args = get_args() + return 0 + + +main() |
