bluemanStartStop.sh 151 B

12345678
  1. #!/bin/bash
  2. isBluemanApplet=$(pgrep blueman-applet)
  3. if [ -z $isBluemanApplet ]
  4. then /usr/bin/blueman-applet &
  5. else kill -9 $isBluemanApplet
  6. fi