conkeror-eval 393 B

12345678910111213141516
  1. #!/bin/sh
  2. #### HELP MESSAGE ##############################################
  3. hlp='Usage: conkeror-eval arg
  4. Evaluate ARG as a Conkeror command (using "conkeror -f").
  5. Activate Conkeror if it is not activated.'
  6. if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
  7. echo "$hlp"
  8. exit 0
  9. fi
  10. ################################################################
  11. conkeror -f "$1" &
  12. wmctrl -xa conkeror &