aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--autotiling/main.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/autotiling/main.py b/autotiling/main.py
index 51ef1d0..50868ee 100644
--- a/autotiling/main.py
+++ b/autotiling/main.py
@@ -118,8 +118,12 @@ def main():
print("autotiling is only active on workspaces:", ','.join(args.workspaces))
# For use w/ nwg-panel
+ ws_file = os.path.join(temp_dir(), "autotiling")
if args.workspaces:
- save_string(','.join(args.workspaces), os.path.join(temp_dir(), "autotiling"))
+ save_string(','.join(args.workspaces), ws_file)
+ else:
+ if os.path.isfile(ws_file):
+ os.remove(ws_file)
if not args.events:
print("No events specified", file=sys.stderr)