blob: 0001abb48c958cb0de201100c6af99a9fe989d70 (
plain)
1
2
3
4
5
6
7
8
9
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
|