diff options
Diffstat (limited to 'monitor-menu.py')
-rwxr-xr-x | monitor-menu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor-menu.py b/monitor-menu.py index b422fcc..8fc0689 100755 --- a/monitor-menu.py +++ b/monitor-menu.py @@ -60,9 +60,9 @@ class MonitorMenu(): feh_cmd.append(monitor['background']); logging.debug("Executing: %s", xrandr_cmd) - subprocess.run(xrandr_cmd) + subprocess.run(xrandr_cmd, check=False) logging.debug("Executing: %s", feh_cmd) - subprocess.run(feh_cmd) + subprocess.run(feh_cmd, check=False) def main(argv=None): |