We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feeaf9a commit 86578b8Copy full SHA for 86578b8
waypaper/__main__.py
@@ -42,7 +42,6 @@
42
parser.add_argument("--fill", help=txt.msg_arg_fill, choices=FILL_OPTIONS)
43
parser.add_argument("--backend", help=txt.msg_arg_back, choices=BACKEND_OPTIONS)
44
args = parser.parse_args()
45
-print(type(args))
46
47
48
def run():
@@ -78,3 +77,4 @@ def run():
78
77
79
if __name__ == "__main__":
80
run()
+
waypaper/common.py
@@ -87,6 +87,7 @@ def check_installed_backends() -> List[str]:
87
installed_backends.append(backend)
88
return installed_backends
89
90
91
def get_monitor_names_swww() -> List[str]:
92
"""Obtain the list of plugged monitors using swww daemon"""
93
connected_monitors: List[str] = []
0 commit comments