Posted by pnd4 on Tue 5th Mar 17:55 (modification of post by view diff)
download | new post
- #!/bin/bash
- # Script to open Vimprobable2 instances in tabbed
- # Modified version of jasonwryan's checks for running instances of tabbed first.
- # Thanks to Vimprobable2 and Suckless Dev's for the programs :D
- # -- pnd4
- if [ `pgrep tabbed` ]; then
- vimprobable2 -e $(</tmp/tabbed.xid) $1
- else
- tabbed -d > /tmp/tabbed.xid
- vimprobable2 -e $(</tmp/tabbed.xid) $1
- fi
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.