mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
asdf
This commit is contained in:
parent
cd830f739a
commit
1fdc27f2c5
4 changed files with 9 additions and 2 deletions
|
@ -45,8 +45,8 @@ map ctrl+shift+right neighboring_window right
|
|||
map ctrl+shift+up neighboring_window up
|
||||
|
||||
# tabs
|
||||
map kitty_mod+t new_tab
|
||||
#map kitty_mod+t new_tab_with_cmd
|
||||
#map kitty_mod+t new_tab
|
||||
map kitty_mod+t new_tab_with_cwd
|
||||
map ctrl+shift+l next_tab
|
||||
map ctrl+shift+h previous_tab
|
||||
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
https://github.com/vizs/declutter-home GitHub - vizs/declutter-home: declutter your home directory!
|
||||
https://unix.stackexchange.com/questions/125647/get-tmux-scroll-buffer-contents Get TMux scroll buffer contents - Unix & Linux Stack Exchange
|
||||
https://github.com/Yucklys/polybar-nord-theme GitHub - Yucklys/polybar-nord-theme: A polybar configuration based on Nord colorscheme with support for multiple modules.
|
||||
|
|
|
@ -4,5 +4,6 @@ youtube google-chrome-stable youtube.de
|
|||
jira google-chrome-stable jira-student.it.hs-heilbronn.de/secure/RapidBoard.jspa?projectKey=RUNDUM
|
||||
confluence google-chrome-stable https://confluence-student.it.hs-heilbronn.de/display/AIB/AIB_LabSWP_2020_SS_Rundum_Studium+Home
|
||||
bitbucket google-chrome-stable https://bitbucket-student.it.hs-heilbronn.de/projects/LABAIB
|
||||
mosh-fin xfce4-terminal --command "mosh --ssh='ssh -p 8888' -p 60000 docker@srv-fin.xware-gmbh.de"
|
||||
ssh-fin xfce4-terminal --command "ssh -p 8888 docker@srv-fin.xware-gmbh.de"
|
||||
ssh-swlab xfce4-terminal --command "ssh -l docker rundum-studium.it-stud.hs-heilbronn.de"
|
||||
|
|
4
files/scripts/tmuxAutocomplete.sh
Executable file
4
files/scripts/tmuxAutocomplete.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
while read -r input; do
|
||||
echo $input | sed 's/\s\+/\n/g' | sed -n '/.\{5\}.\+/p'
|
||||
done | fzf --height 10 | tr -d '\n' | xargs tmux send-keys
|
Loading…
Reference in a new issue