[packages] removed broken tmuxifier

This commit is contained in:
Simon Cornet 2024-04-15 16:01:42 +02:00
parent a79a69d0f8
commit c07ed9c130
3 changed files with 0 additions and 45 deletions

View File

@ -1,37 +0,0 @@
# tmux
## create new tmux session
```shell
tuxifier new-session default
```
## add following script
```shell
if initialize_session "default"; then
# open dotfiles
new_window "dotfiles"
run_cmd "cd ~/.dotfiles"
run_cmd "nvim"
# open siempie
new_window "siempie"
run_cmd "cd ~/Documents/git/siempie"
run_cmd "nvim"
# open itcreation
new_window "itcreation"
run_cmd "cd ~/Documents/git/itcreation"
run_cmd "nvim"
# open empty shell
new_window "simon"
# go by default to the open shell
select_window 4
fi
# finalize session creation and switch/attach to it.
finalize_and_go_to_session
```

View File

@ -1,11 +1,6 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# tmuxifier
home.packages = with pkgs; [
tmuxifier
];
# tmux # tmux
programs.tmux = { programs.tmux = {
enable = true; enable = true;

View File

@ -58,9 +58,6 @@
# teleport # teleport
titc = "tsh login --proxy=teleport.itcreation.nl --user=admscornet"; titc = "tsh login --proxy=teleport.itcreation.nl --user=admscornet";
# tmux
td = "tmuxifier load-session default";
}; };
}; };
} }