summaryrefslogtreecommitdiff
path: root/src/get_args.py
diff options
context:
space:
mode:
authorChandler Justice <chandler@cock.li>2023-12-11 20:36:30 -0700
committerChandler Justice <chandler@cock.li>2023-12-11 20:36:30 -0700
commitc8f2a2635ec90499bd2ec75969f222f398c1bbc5 (patch)
tree9fa7aef82b2fe2ad0f457acc7c821f14c1eef7d1 /src/get_args.py
parent871d4b7b8d471e05794dd4c1128d7c2d91d48d56 (diff)
refactor complete
Diffstat (limited to 'src/get_args.py')
-rw-r--r--src/get_args.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/get_args.py b/src/get_args.py
new file mode 100644
index 0000000..0001abb
--- /dev/null
+++ b/src/get_args.py
@@ -0,0 +1,10 @@
+import user_interface
+
+def get_args(args):
+ if len(args) != 2:
+ pass
+ elif '-r' in args:
+ img_path = user_interface.pickRandomWallpaper()
+ else:
+ img_path = args[1]
+ return img_path