WM: Add support for Rectangle on macOS
Rectangle is a Swift rewrite of the Spectacle application.
This commit is contained in:
parent
751f9059ee
commit
296fb68564
3
neofetch
3
neofetch
|
@ -1631,7 +1631,7 @@ get_wm() {
|
|||
else
|
||||
case "$os" in
|
||||
"Mac OS X")
|
||||
ps_line="$(ps -e | grep -o '[S]pectacle\|[A]methyst\|[k]wm\|[c]hun[k]wm\|[y]abai')"
|
||||
ps_line="$(ps -e | grep -o '[S]pectacle\|[A]methyst\|[k]wm\|[c]hun[k]wm\|[y]abai\|[R]ectangle')"
|
||||
|
||||
case "$ps_line" in
|
||||
*"chunkwm"*) wm="chunkwm" ;;
|
||||
|
@ -1639,6 +1639,7 @@ get_wm() {
|
|||
*"yabai"*) wm="yabai" ;;
|
||||
*"Amethyst"*) wm="Amethyst" ;;
|
||||
*"Spectacle"*) wm="Spectacle" ;;
|
||||
*"Rectangle"*) wm="Rectangle" ;;
|
||||
*) wm="Quartz Compositor" ;;
|
||||
esac
|
||||
;;
|
||||
|
|
Reference in New Issue