Compare commits

...

3 Commits

Author SHA1 Message Date
nikolaizombie1
43255355bc
Merge 050eba6e34 into daf36bdab1 2024-06-10 15:38:24 +05:30
nikolaizombie1
050eba6e34 Add listing of monitors and wallpapers through a command line option 2024-06-07 16:36:21 -04:00
nikolaizombie1
6f461d6e9f Add json export 2024-06-07 16:05:14 -04:00

View File

@ -3,6 +3,7 @@
import argparse
import sys
import time
import json
from waypaper.aboutdata import AboutData
from waypaper.app import App
@ -43,6 +44,7 @@ parser.add_argument("--restore", help=txt.msg_arg_rest, action="store_true")
parser.add_argument("--random", help=txt.msg_arg_rand, action="store_true")
parser.add_argument("--fill", help=txt.msg_arg_fill, choices=FILL_OPTIONS)
parser.add_argument("--backend", help=txt.msg_arg_back, choices=BACKEND_OPTIONS)
parser.add_argument("--list", help=txt.msg_arg_list, action='store_true')
args = parser.parse_args()
@ -71,6 +73,12 @@ def run():
if args.version:
print(f"{about.applicationName()} v.{about.applicationVersion()}")
sys.exit(0)
if args.list:
# Get the wallpapers and monitors and create a list of dictionaries
wallpapers_and_monitors = list(map(lambda x: {"monitor": x[0], "wallpaper": x[1]} ,zip(cf.monitors,cf.wallpapers_str.split(','))))
print(json.dumps(wallpapers_and_monitors))
sys.exit(0)
# Start GUI:
app = App(txt)