diff options
author | neodarz <neodarz@neodarz.net> | 2019-09-04 16:01:20 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-09-04 16:01:20 +0200 |
commit | 8eda983c6b322b1c2cacf440eca06fa198783500 (patch) | |
tree | f2f5c04bf79de9895a94ae6a211b64ba27b3c02b | |
parent | 5d3a33b339502b98cfff970593977bbb800508fd (diff) | |
download | dotfiles_ascii-8eda983c6b322b1c2cacf440eca06fa198783500.tar.xz dotfiles_ascii-8eda983c6b322b1c2cacf440eca06fa198783500.zip |
Add little starting script for work
-rw-r--r-- | i3/.config/i3/config | 1 | ||||
-rwxr-xr-x | scripts/.scripts/working.sh | 3 | ||||
-rw-r--r-- | scripts/.scripts/working_tmux.yaml | 15 |
3 files changed, 19 insertions, 0 deletions
diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 24941cd..da7373c 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -419,3 +419,4 @@ bar { exec setxkbmap fr exec export XDG_RUNTIME_DIR=/run/user/`id -u` exec systemctl --user start twmnd.service +exec alacritty -e $HOME/.scripts/working.sh diff --git a/scripts/.scripts/working.sh b/scripts/.scripts/working.sh new file mode 100755 index 0000000..d40ee7b --- /dev/null +++ b/scripts/.scripts/working.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +tmuxp load ./working_tmux.yaml diff --git a/scripts/.scripts/working_tmux.yaml b/scripts/.scripts/working_tmux.yaml new file mode 100644 index 0000000..d2bc453 --- /dev/null +++ b/scripts/.scripts/working_tmux.yaml @@ -0,0 +1,15 @@ +session_name: work +windows: +- window_name: all + layout: main-horizontal + options: + main-pane-height: 35 + shell_command_before: + - cd ~/ # run as a first command in all panes + panes: + - shell_command: + - weechat + focus: true + - clear; work + - cals + - clear; t |