This file contains 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/sh | |
# | |
# change all 'somedir' and 'somecommand' entries below to directory you need and command you need accordingly | |
# do not forget make file executable: chmod +x .tmux-start | |
# run your terminal with this file e.g. for Guake: guake -e ~/.tmux-start | |
SESSION_NAME="dev" | |
cd ~/somedir | |
tmux has-session -t ${SESSION_NAME} |
This file contains 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
set -g default-shell /usr/bin/fish | |
set -g status off |
This file contains 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
# A Powerline like prompt for Bash, ZSH and Fish | |
function fish_prompt | |
~/powerline-shell.py $status --shell bare ^/dev/null | |
end | |
# list of files | |
function l | |
ls --human-readable -l -A | |
end |