From 5644f0c80995464fd7316423daa1c26bb5dde9d4 Mon Sep 17 00:00:00 2001 From: OdiousImp2604 <74424076+OdiousImp2604@users.noreply.github.com> Date: Mon, 28 Feb 2022 18:05:57 +0000 Subject: [PATCH] Update windows.py --- .config/wofi/windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/wofi/windows.py b/.config/wofi/windows.py index 7da060f..e818748 100644 --- a/.config/wofi/windows.py +++ b/.config/wofi/windows.py @@ -64,7 +64,7 @@ def build_wofi_string(windows): # Executes wofi with the given input string def show_wofi(windows): - command="wofi -c ~/.config/wofi/menu -s ~/.config/wofi/sway.css -p \"Windows: \" -d -i --hide-scroll" + command="wofi -c ~/.config/wofi/menu -s ~/.config/wofi/style.css -p \"Windows: \" -d -i --hide-scroll" process = subprocess.Popen(command,shell=True,stdin=subprocess.PIPE,stdout=subprocess.PIPE) return process.communicate(input=windows)[0]