This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SESSION=blog | |
PROJECT_DIR=~/Projects/zdc | |
tmux has-session -t $SESSION | |
if [ $? != 0 ] | |
then | |
echo "Creating a new session. This shit's going to be dope." | |
tmux new-session -s $SESSION -n editor -d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo mdutil -a -i off | |
sudo mdutil -a -i on |
OlderNewer