dotfiles

dotfiles for my system
git clone git://git.evenfri.xyz/dotfiles.git
Log | Files | Refs

win_pos (207B)


      1 #!/bin/sh
      2 
      3 DIRECTION="$1"
      4 SIZE=20
      5 
      6 case "$DIRECTION" in
      7   left)   bspc node -v -"$SIZE" 0 ;;
      8   bottom) bspc node -v 0 "$SIZE" ;;
      9   top)    bspc node -v 0 -"$SIZE" ;;
     10   right)  bspc node -v "$SIZE" 0 ;;
     11 esac