Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WOB Not working after logout (swaywm) #88

Closed
enricofadly opened this issue Jan 11, 2022 · 2 comments
Closed

WOB Not working after logout (swaywm) #88

enricofadly opened this issue Jan 11, 2022 · 2 comments

Comments

@enricofadly
Copy link

WOB isn't work after i logout the sway,

@francma
Copy link
Owner

francma commented Jan 11, 2022

My guess is that it doesn't work because the $WOBSOCK file already exists and that leads to mkfifo failing.

Try changing this:

exec mkfifo $WOBSOCK && tail -f $WOBSOCK | wob

to this:

exec rm -f $WOBSOCK && mkfifo $WOBSOCK && tail -f $WOBSOCK | wob

in your sway config.

@enricofadly
Copy link
Author

My guess is that it doesn't work because the $WOBSOCK file already exists and that leads to mkfifo failing.

Try changing this:

exec mkfifo $WOBSOCK && tail -f $WOBSOCK | wob

to this:

exec rm -f $WOBSOCK && mkfifo $WOBSOCK && tail -f $WOBSOCK | wob

in your sway config.

Unbelievable sir, its working like a charm, thanks sir have a nice day

@francma francma closed this as completed Mar 5, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants