Created
January 20, 2022 15:44
-
-
Save ethan605/f786f81ab43aab9401c7f8f2f0de8ea9 to your computer and use it in GitHub Desktop.
Common terminal operations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find all wayland containers in Sway | |
swaymsg -t get_tree | jq -r '.. | .app_id?' | grep -v null | |
# Find all xwayland containers in Sway | |
swaymsg -t get_tree | jq -r '.. | .instance?' | grep -v null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment