aboutsummaryrefslogtreecommitdiff
path: root/toggle-monocle
blob: bad444aec6a661d78d254cb30c57d8c413d10018 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

# toggle monocle mode for bspwm

MONOCLE=$(eww get monocleMode)
if [ $MONOCLE = true ]; then
  eww update monocleMode=false
  # notify "Zoom Out"
else
  eww update monocleMode=true
  # notify "Zoom In"
fi
bspc desktop -l next