blob: 940dcb58e50576a74bd873f01148ea2410e2fc6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import json
from argparse import Namespace
from caelestia.utils.wallpaper import get_colours_for_wall, get_wallpaper, set_random, set_wallpaper
class Command:
args: Namespace
def __init__(self, args: Namespace) -> None:
self.args = args
def run(self) -> None:
if self.args.print:
print(json.dumps(get_colours_for_wall(self.args.print, self.args.no_smart)))
elif self.args.file:
set_wallpaper(self.args.file, self.args.no_smart)
elif self.args.random:
set_random(self.args)
else:
print(get_wallpaper() or "No wallpaper set")
|