style.sh 291 B

123456789101112131415
  1. #!/usr/bin/env bash
  2. # Available Styles
  3. # >> Created and tested on : rofi 1.6.0-1
  4. #
  5. # square circle rounded
  6. style="square"
  7. # uncomment these lines to enable random style
  8. #styles=('square' 'circle' 'rounded')
  9. #style="${styles[$(( $RANDOM % 3 ))]}"
  10. # print style name
  11. echo "$style"