diff options
| author | JopStro <[email protected]> | 2021-02-02 11:30:54 +0000 |
|---|---|---|
| committer | JopStro <[email protected]> | 2021-02-02 11:30:54 +0000 |
| commit | e777d168519b10a3e19e9207c51a0b2de37dc739 (patch) | |
| tree | d4f601741c62b4f7b3f724528f1ab98279347dac | |
| parent | e6de1db7d910bf209f0e249901bdc918f0119ed2 (diff) | |
Fix regex in get_pid (for real this time)
| -rwxr-xr-x | bspswallow | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ get_class() { } get_pid() { - xprop _NET_WM_PID -id "$1" | awk '/[0-9]*/ {print $3}' + xprop _NET_WM_PID -id "$1" | awk '/[0-9]+/ {print $3}' } get_ppid() { |
