This commit is contained in:
2018-12-06 20:52:32 +01:00
parent 9159763cee
commit 4e92056e0b
30 changed files with 826 additions and 0 deletions

93
.screenrc Normal file
View File

@@ -0,0 +1,93 @@
# the following two lines give a two-line status, with the current window highlighted
hardstatus alwayslastline
hardstatus string '%{= kG}[%{G}%H%? %1`%?%{g}][%= %{= kw}%-w%{+b yk} %n*%t%?(%u)%? %{-}%+w %=%{g}][%{B}%m/%d %{W}%C%A%{g}]'
# huge scrollback buffer
defscrollback 5000
# no welcome message
startup_message off
# 256 colors
attrcolor b ".I"
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
defbce on
# mouse tracking allows to switch region focus by clicking
mousetrack on
# default windows
screen -t Shell1 1 zsh
screen -t Shell2 2 zsh
screen -t REPL 3 lein repl
screen -t cmus 4 cmus
screen -t emacs 5 emacs -nw
screen -t htop 6 htop
screen -t nmon 7 nmon
screen -t power 8 sudo powertop
screen -t mc 9 mc
select 0
bind c screen 1 # window numbering starts at 1 not 0
bind 0 select 10
# get rid of silly xoff stuff
bind s split
# layouts
layout autosave on
layout new one
select 1
layout new two
select 1
split
resize -v +8
focus down
select 4
focus up
layout new three
select 1
split
resize -v +7
focus down
select 3
split -v
resize -h +10
focus right
select 4
focus up
layout attach one
layout select one
# navigating regions with Ctrl-arrows
bindkey "^[[1;5D" focus left
bindkey "^[[1;5C" focus right
bindkey "^[[1;5A" focus up
bindkey "^[[1;5B" focus down
# switch windows with F3 (prev) and F4 (next)
bindkey "^[OR" prev
bindkey "^[OS" next
# switch layouts with Ctrl+F3 (prev layout) and Ctrl+F4 (next)
bindkey "^[O1;5R" layout prev
bindkey "^[O1;5S" layout next
# F2 puts Screen into resize mode. Resize regions using ndkey "^[OQ" eval "command -c rsz" # enter resize mode
# use nd -c rsz h eval "resize -h -5" "command -c rsz"
bind -c rsz j eval "resize -v -5" "command -c rsz"
bind -c rsz k eval "resize -v +5" "command -c rsz"
bind -c rsz l eval "resize -h +5" "command -c rsz"
# quickly switch between regions using tab and arrows
bind -c rsz \t eval "focus" "command -c rsz" # Tab
bind -c rsz -k kl eval "focus left" "command -c rsz" # Left
bind -c rsz -k kr eval "focus right" "command -c rsz" # Right
bind -c rsz -k ku eval "focus up" "command -c rsz" # Up
bind -c rsz -k kd eval "focus down" "command -c rsz" # Downh<o resize regions>h</o>)]]}}})}
term xterm-256color
caption string "%{03} "
rendition so =01

182
.tmux.conf Executable file
View File

@@ -0,0 +1,182 @@
## Mouse options
set -g mouse on
#bind -T root WheelUpPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; copy-mode -e; send-keys -M"
#bind -T root WheelDownPane if-shell -F -t = "#{alternate_on}" "send-keys -M" "select-pane -t =; send-keys -M"
## Start counting windows from 1
set -g base-index 1
setw -g mode-keys vi
# Copy/paste. Selecting any text with mouse automatically sopies it to the clipboard
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xsel -i -p -b"
bind-key p run "xsel -o | tmux load-buffer - ; tmux paste-buffer"
bind -n C-S-v run "xsel -o | tmux load-buffer - ; tmux paste-buffer"
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i -p && xsel -o -p | xsel -i -b"
bind-key -T copy-mode-vi C-c send-keys -X copy-pipe-and-cancel "xsel -i -p && xsel -o -p | xsel -i -b"
bind-key p run "xsel -o | tmux load-buffer - ; tmux paste-buffer"
#bind -n C-S-c "copy-pipe "xsel -i -p -b""
#bind-key C-S-c "copy-pipe "xsel -i -p -b""
## titles
set-window-option -g automatic-rename on
set-option -g set-titles on
## Toggle copymode
bind Escape copy-mode
##open and close splits
bind - split-window -v
bind % split-window -h
bind Z resize-pane -Z
bind M-k resize-pane -U 5
bind M-j resize-pane -D 5
bind M-h resize-pane -L 5
bind M-l resize-pane -R 5
# Use Ctrl-arrows to navigate text
set-window-option -g xterm-keys on
set -as terminal-overrides ',st*:Ss@'
# Use Alt-arrow keys without prefix key to switch panes
#bind -n M-Left select-pane -L
#bind -n M-Right select-pane -R
#bind -n M-Up select-pane -U
#bind -n M-Down select-pane -D
# Use Alt-Shift-arrow keys without prefix key to switch panes (for better micro compatibility)
bind -n C-S-H select-pane -L
bind -n C-S-L select-pane -R
bind -n C-S-K select-pane -U
bind -n C-S-J select-pane -D
# bind -n H-h select-pane -L
# bind -n H-l select-pane -R
# bind -n H-k select-pane -U
# bind -n H-j select-pane -D
bind h select-pane -L
bind l select-pane -R
bind k select-pane -U
bind j select-pane -D
# Shift arrow to switch windows
bind S-PageDown prev
bind S-PageUp next
# No delay for escape key press
set -sg escape-time 0
# Reload tmux config
bind r source-file ~/.tmux.conf
#unbind C-b
#set -g prefix C-a
set -g prefix M-a
set -g prefix2 C-b # GNU-Screen compatible prefix
bind C-b send-prefix -2
set -g pane-active-border-fg colour79
set -g pane-active-border-fg '#98971a'
setw -g aggressive-resize on
# ----------------------
# Status Bar
# -----------------------
set-option -g status on # turn the status bar on
set -g status-interval 15 # set update frequencey (default 15 seconds)
set -g status-justify centre # center window list for clarity
set-option -g status-position top # position the status bar at top of screen
# visual notification of activity in other windows
setw -g monitor-activity on
set -g visual-activity on
# set color for status bar
# # set-option -g status-bg colour00 #base02
set-option -g status-bg default #base02
set-option -g status-fg colour135
#yellow
set-option -g status-attr dim
# set window list colors - red for active and cyan for inactive
set-window-option -g window-status-fg colour29 #base0
set-window-option -g window-status-bg colour236
set-window-option -g window-status-attr dim
set-window-option -g window-status-current-fg colour79 #orange
set-window-option -g window-status-current-bg colour235
set-window-option -g window-status-current-attr bright
# show host name
set -g status-left-length 70
set -g status-left "cpu: #{cpu_icon} #{cpu_percentage} #[fg=green]: #h "
# don't show anything on the left side of the bar
# set -g status-left ""
# show session name, window & pane number, date and time on right side of
# status bar
set -g status-right-length 60
# set -g status-right "#[fg=blue]#s #i:#p #[fg=yellow]:: %d/%m/%y #[fg=green]:: %h:%m"
# set -g status-right "#[fg=blue]#s #i:#p #[fg=yellow]:: %d/%m/%y #[fg=green]:: #{battery_percentage} #{battery_remain}:: %h:%m"
# set -g status-right " #[fg=yellow] %d/%m/%y #[fg=green]:: #{battery_percentage} #{battery_remain}"
set -g status-right " #[fg=green] Bat: #[fg=blue]#{battery_percentage} #{battery_remain} :: %Y-%m-%d :: #[fg=yellow] %H:%M"
# don't show anything on the right side of the bar
#set -g status-right ""
#set -g default-command "/usr/bin/zsh"
#set -g default-shell "/usr/bin/fish"
# set -g default-terminal screen-256color
# set -as terminal-overrides ',st*:kind@:kri@'
set -g default-terminal 'screen-256color'
set -ga terminal-overrides ',screen-256color:tc'
# better mouse support
# set -g @prevent-scroll-for-fullscreen-alternate-buffer 'on'
# set -g @scroll-speed-num-lines-per-scroll '3'
# run-shell /usr/share/tmux/tmux-better-mouse-mode/scroll_copy_mode.tmux
# list of plugins
set -g @plugin 'tmux-plugins/tpm'
#set -g @plugin 'tmux-plugins/tmux-sensible'
# other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'
set -g @plugin 'tmux-plugins/tmux-resurrect'
#set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'tmux-plugins/tmux-battery'
set -g @plugin 'tmux-plugins/tmux-cpu'
set -g @plugin 'tmux-plugins/tmux-sidebar'
set -g @sidebar-tree-command 'tree -c'
#set -g @plugin 'christoomey/vim-tmux-navigator'
#set -g @plugin 'shaneog/tmux-colors-gotham'
# set -g @plugin 'seebi/tmux-colors-solarized'
#set -g @plugin 'arcticicestudio/nord-tmux'
#set -g @plugins 'egel/tmux-gruvbox'
# pane movement
bind-key M command-prompt -p "join pane from:" "join-pane -s '%%'"
bind-key m command-prompt -p "send pane to:" "join-pane -t '%%'"
# set -g @resurrect-capture-pane-contents 'on'
# status bar
# set-option -g status-bg colour234
# set-option -g status-fg colour252
# #
# #Window titles
# set-window-option -g window-status-fg colour252
# set-window-option -g window-status-bg default
# set-window-option -g window-status-attr dim
# #
# #Active window title
# set-window-option -g window-status-current-fg colour135
# set-window-option -g window-status-current-bg default
# set-window-option -g window-status-current-attr bright
#
# # Pane border
set-option -g pane-border-fg colour234
# set-option -g pane-active-border-fg colour234
# #
#Message text
# set-option -g message-bg colour234
# set-option -g message-fg colour252
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'

Submodule .tmux/plugins/tmux-battery added at c2cd5c8687

Submodule .tmux/plugins/tmux-colors-solarized added at b74be1f507

Submodule .tmux/plugins/tmux-cpu added at d7d3501fda

Submodule .tmux/plugins/tmux-resurrect added at e5cbe54c75

Submodule .tmux/plugins/tmux-sidebar added at 23014524ca

1
.tmux/plugins/tpm Submodule

Submodule .tmux/plugins/tpm added at 42bb2bf48b

1
.tmux/resurrect/last Symbolic link
View File

@@ -0,0 +1 @@
tmux_resurrect_20181205T150638.txt

View File

@@ -0,0 +1,3 @@
pane 0 1 :bash 1 :* 0 :/home/kap4102 1 bash :
window 0 1 1 :* aedd,81x23,0,0,0
state 0

View File

@@ -0,0 +1,14 @@
pane 0 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 1 1 :zsh 1 :* 0 :/home/kap4102 0 nvim :nvim
pane 1 1 :zsh 1 :* 1 :/home/kap4102 0 zsh :
pane 1 1 :zsh 1 :* 2 :/home/kap4102 1 zsh :
pane 1 1 :zsh 1 :* 3 :/home/kap4102 0 mc :mc
pane 1 1 :zsh 1 :* 4 :/home/kap4102 0 sudo :sudo powertop
pane 1 1 :zsh 1 :* 5 :/home/kap4102 0 htop :htop
pane 2 1 :nvim 1 :* 0 :/home/kap4102 1 nvim :nvim /home/kap4102/.config/awesome/rc.lua
pane 3 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
window 0 1 1 :* c5bd,348x93,0,0,0
window 1 1 1 :* 337e,383x99,0,0{192x99,0,0,1,95x99,193,0[95x49,193,0,2,95x49,193,50,5],94x99,289,0[94x51,289,0,3,94x23,289,52,4,94x23,289,76,6]}
window 2 1 1 :* c4c4,156x93,0,0,7
window 3 1 1 :* c5c5,348x93,0,0,8
state 1

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,33 @@
pane 0 1 :htop 1 :* 0 :/home/kap4102 1 htop :htop
pane 0 1 :htop 1 :* 1 :/home/kap4102 0 zsh :
pane 0 1 :htop 1 :* 2 :/home/kap4102 0 zsh :
pane 1 1 :emacs 1 :* 0 :/home/kap4102 1 emacs :emacs -nw /usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt /usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt /usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt /usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt /usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt /usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt /usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt /usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt /usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt /usr/share/ca-certificates/mozilla/Certigna.crt /usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G1.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G2.crt /usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt /usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt /usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt /usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt /usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt /usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt /usr/share/ca-certificates/mozilla/EC-ACC.crt /usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt /usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt /usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt /usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt /usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt /usr/share/ca-certifi
pane 3 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 4 1 :mc 1 :* 0 :/home/kap4102 0 zsh :
pane 4 1 :mc 1 :* 1 :/home/kap4102 1 zsh :
pane 5 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 7 1 :main 1 :* 0 :/home/kap4102 0 nvim :nvim
pane 7 1 :main 1 :* 1 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 2 :/home/kap4102 1 zsh :
pane 7 1 :main 1 :* 3 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 4 :/home/kap4102 0 htop :htop
pane 7 1 :main 1 :* 5 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 6 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 7 1 :main 1 :* 7 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 0 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 1 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 2 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 3 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 4 :/home/kap4102 0 htop :htop
pane 7 2 :utils 0 :# 5 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 6 :/home/kap4102 1 zsh :
pane 7 3 :zsh 0 :- 0 :/home/kap4102 1 zsh :
window 0 1 1 :* 2c49,383x112,0,0{191x112,0,0,1,191x112,192,0[191x57,192,0,2,191x54,192,58,3]}
window 1 1 1 :* 8e51,383x112,0,0,4
window 3 1 1 :* 8e52,383x112,0,0,5
window 4 1 1 :* c003,383x112,0,0[383x56,0,0,6,383x55,0,57,7]
window 5 1 1 :* 8e55,383x112,0,0,8
window 7 1 1 :* 8815,383x112,0,0{203x112,0,0,9,179x112,204,0[179x64,204,0{124x64,204,0,10,54x64,329,0,28},179x47,204,65{74x47,204,65,11,80x47,279,65[80x23,279,65,24,80x23,279,89,27],23x47,360,65[23x33,360,65,25,23x13,360,99,26]}]}
window 7 2 0 :# 89e1,383x112,0,0[383x46,0,0{103x46,0,0,16,103x46,104,0,17,175x46,208,0,18},383x65,0,47{175x65,0,47[175x46,0,47,19,175x18,0,94,20],103x65,176,47,21,103x65,280,47,22}]
window 7 3 0 :- c75a,383x112,0,0,23
state 7 0

View File

@@ -0,0 +1,31 @@
pane 0 1 :htop 1 :* 0 :/home/kap4102 1 htop :htop
pane 0 1 :htop 1 :* 1 :/home/kap4102 0 zsh :
pane 0 1 :htop 1 :* 2 :/home/kap4102 0 zsh :
pane 1 1 :emacs 1 :* 0 :/home/kap4102 1 emacs :emacs -nw /usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt /usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt /usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt /usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt /usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt /usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt /usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt /usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt /usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt /usr/share/ca-certificates/mozilla/Certigna.crt /usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G1.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G2.crt /usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt /usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt /usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt /usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt /usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt /usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt /usr/share/ca-certificates/mozilla/EC-ACC.crt /usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt /usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt /usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt /usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt /usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt /usr/share/ca-certifi
pane 3 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 4 1 :mc 1 :* 0 :/home/kap4102 0 zsh :
pane 4 1 :mc 1 :* 1 :/home/kap4102 1 zsh :
pane 5 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 7 1 :main 1 :* 0 :/home/kap4102 1 nvim :nvim
pane 7 1 :main 1 :* 1 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 2 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 3 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 4 :/home/kap4102 0 htop :htop
pane 7 1 :main 1 :* 5 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 7 2 :utils 0 :# 0 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 1 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 2 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 3 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 4 :/home/kap4102 0 htop :htop
pane 7 2 :utils 0 :# 5 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 6 :/home/kap4102 1 zsh :
pane 7 3 :zsh 0 :- 0 :/home/kap4102 1 zsh :
window 0 1 1 :* 2c49,383x112,0,0{191x112,0,0,1,191x112,192,0[191x57,192,0,2,191x54,192,58,3]}
window 1 1 1 :* 8e51,383x112,0,0,4
window 3 1 1 :* 8e52,383x112,0,0,5
window 4 1 1 :* c003,383x112,0,0[383x56,0,0,6,383x55,0,57,7]
window 5 1 1 :* 8e55,383x112,0,0,8
window 7 1 1 :* b47d,383x112,0,0{203x112,0,0,9,179x112,204,0[179x79,204,0{124x79,204,0,10,54x79,329,0,28},179x32,204,80{74x32,204,80,11,80x32,279,80,24,23x32,360,80,25}]}
window 7 2 0 :# 89e1,383x112,0,0[383x46,0,0{103x46,0,0,16,103x46,104,0,17,175x46,208,0,18},383x65,0,47{175x65,0,47[175x46,0,47,19,175x18,0,94,20],103x65,176,47,21,103x65,280,47,22}]
window 7 3 0 :- c75a,383x112,0,0,23
state 7 0

View File

@@ -0,0 +1,32 @@
pane 0 1 :htop 1 :* 0 :/home/kap4102 1 htop :htop
pane 0 1 :htop 1 :* 1 :/home/kap4102 0 zsh :
pane 0 1 :htop 1 :* 2 :/home/kap4102 0 zsh :
pane 1 1 :emacs 1 :* 0 :/home/kap4102 1 emacs :emacs -nw /usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt /usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt /usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt /usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt /usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt /usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt /usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt /usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt /usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt /usr/share/ca-certificates/mozilla/Certigna.crt /usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G1.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G2.crt /usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt /usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt /usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt /usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt /usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt /usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt /usr/share/ca-certificates/mozilla/EC-ACC.crt /usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt /usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt /usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt /usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt /usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt /usr/share/ca-certifi
pane 3 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 4 1 :mc 1 :* 0 :/home/kap4102 0 zsh :
pane 4 1 :mc 1 :* 1 :/home/kap4102 1 zsh :
pane 5 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 7 1 :main 1 :* 0 :/home/kap4102 1 nvim :nvim
pane 7 1 :main 1 :* 1 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 2 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 3 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 4 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 5 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 7 1 :main 1 :* 6 :/home/kap4102 0 htop :htop
pane 7 2 :utils 0 :# 0 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 1 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 2 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 3 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 4 :/home/kap4102 0 htop :htop
pane 7 2 :utils 0 :# 5 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 6 :/home/kap4102 1 zsh :
pane 7 3 :zsh 0 :- 0 :/home/kap4102 1 zsh :
window 0 1 1 :* 2c49,383x112,0,0{191x112,0,0,1,191x112,192,0[191x57,192,0,2,191x54,192,58,3]}
window 1 1 1 :* 8e51,383x112,0,0,4
window 3 1 1 :* 8e52,383x112,0,0,5
window 4 1 1 :* c003,383x112,0,0[383x56,0,0,6,383x55,0,57,7]
window 5 1 1 :* 8e55,383x112,0,0,8
window 7 1 1 :* 6ce7,383x112,0,0{203x112,0,0,9,179x112,204,0[179x78,204,0{113x78,204,0,10,65x78,318,0[65x39,318,0,11,65x38,318,40,25]},179x33,204,79{89x33,204,79,12,24x33,294,79,24,64x33,319,79,23}]}
window 7 2 0 :# 5db1,383x112,0,0[383x46,0,0{103x46,0,0,15,103x46,104,0,16,175x46,208,0,17},383x65,0,47{175x65,0,47[175x46,0,47,18,175x18,0,94,19],103x65,176,47,20,103x65,280,47,21}]
window 7 3 0 :- c759,383x112,0,0,22
state 7 0

View File

@@ -0,0 +1,31 @@
pane 0 1 :htop 1 :* 0 :/home/kap4102 1 htop :htop
pane 0 1 :htop 1 :* 1 :/home/kap4102 0 zsh :
pane 0 1 :htop 1 :* 2 :/home/kap4102 0 zsh :
pane 1 1 :emacs 1 :* 0 :/home/kap4102 1 emacs :emacs -nw /usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt /usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt /usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt /usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt /usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt /usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt /usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt /usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt /usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt /usr/share/ca-certificates/mozilla/Certigna.crt /usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G1.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G2.crt /usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt /usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt /usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt /usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt /usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt /usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt /usr/share/ca-certificates/mozilla/EC-ACC.crt /usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt /usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt /usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt /usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt /usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt /usr/share/ca-certifi
pane 3 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 4 1 :mc 1 :* 0 :/home/kap4102 0 zsh :
pane 4 1 :mc 1 :* 1 :/home/kap4102 1 zsh :
pane 5 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 7 1 :main 1 :* 0 :/home/kap4102 0 nvim :nvim
pane 7 1 :main 1 :* 1 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 2 :/home/kap4102 1 zsh :
pane 7 1 :main 1 :* 3 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 4 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 5 :/home/kap4102 0 htop :htop
pane 7 2 :utils 0 :# 0 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 1 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 2 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 3 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 4 :/home/kap4102 0 htop :htop
pane 7 2 :utils 0 :# 5 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 6 :/home/kap4102 1 zsh :
pane 7 3 :zsh 0 :- 0 :/home/kap4102 1 zsh :
window 0 1 1 :* 2c49,383x112,0,0{191x112,0,0,1,191x112,192,0[191x57,192,0,2,191x54,192,58,3]}
window 1 1 1 :* 8e51,383x112,0,0,4
window 3 1 1 :* 8e52,383x112,0,0,5
window 4 1 1 :* c003,383x112,0,0[383x56,0,0,6,383x55,0,57,7]
window 5 1 1 :* 8e55,383x112,0,0,8
window 7 1 1 :* 53a1,383x112,0,0{203x112,0,0,9,179x112,204,0[179x74,204,0{123x74,204,0,10,55x74,328,0[55x52,328,0,11,55x21,328,53,12]},179x37,204,75{101x37,204,75,13,77x37,306,75,15}]}
window 7 2 0 :# 89e1,383x112,0,0[383x46,0,0{103x46,0,0,16,103x46,104,0,17,175x46,208,0,18},383x65,0,47{175x65,0,47[175x46,0,47,19,175x18,0,94,20],103x65,176,47,21,103x65,280,47,22}]
window 7 3 0 :- c75a,383x112,0,0,23
state 7 0

View File

@@ -0,0 +1,42 @@
pane 0 1 :htop 1 :* 0 :/home/kap4102 1 htop :htop
pane 0 1 :htop 1 :* 1 :/home/kap4102 0 zsh :
pane 0 1 :htop 1 :* 2 :/home/kap4102 0 zsh :
pane 1 1 :emacs 1 :* 0 :/home/kap4102 1 emacs :emacs -nw /usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt /usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt /usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt /usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt /usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt /usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt /usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt /usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt /usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt /usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt /usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt /usr/share/ca-certificates/mozilla/Certigna.crt /usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G1.crt /usr/share/ca-certificates/mozilla/Certplus_Root_CA_G2.crt /usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt /usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt /usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt /usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt /usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt /usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt /usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt /usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt /usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt /usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt /usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt /usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt /usr/share/ca-certificates/mozilla/EC-ACC.crt /usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt /usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt /usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt /usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt /usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt /usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt /usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt /usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt /usr/share/ca-certifi
pane 10 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 11 1 :screen 1 :* 0 :/home/kap4102 0 nvim :nvim
pane 11 1 :screen 1 :* 1 :/home/kap4102 1 screen :screen
pane 3 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 4 1 :mc 1 :* 0 :/home/kap4102 0 zsh :
pane 4 1 :mc 1 :* 1 :/home/kap4102 1 zsh :
pane 5 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 6 1 :nvim 1 :* 0 :/home/kap4102 1 nvim :nvim
pane 7 1 :main 1 :* 0 :/home/kap4102 0 nvim :nvim
pane 7 1 :main 1 :* 1 :/home/kap4102 1 zsh :
pane 7 1 :main 1 :* 2 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 3 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 4 :/home/kap4102 0 zsh :
pane 7 1 :main 1 :* 5 :/home/kap4102 0 htop :htop
pane 7 2 :utils 0 :# 0 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 1 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 2 :/home/kap4102 1 sudo :sudo powertop
pane 7 2 :utils 0 :# 3 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 4 :/home/kap4102 0 htop :htop
pane 7 2 :utils 0 :# 5 :/home/kap4102 0 zsh :
pane 7 2 :utils 0 :# 6 :/home/kap4102 0 zsh :
pane 7 3 :zsh 0 :#- 0 :/home/kap4102 1 zsh :
pane 8 1 :zsh 1 :* 0 :/home/kap4102/Downloads 1 zsh :
pane 9 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
window 0 1 1 :* 2c49,383x112,0,0{191x112,0,0,1,191x112,192,0[191x57,192,0,2,191x54,192,58,3]}
window 1 1 1 :* 8e51,383x112,0,0,4
window 10 1 1 :* 4d02,480x134,0,0,32
window 11 1 1 :* ca17,133x112,0,0[133x81,0,0,33,133x30,0,82,34]
window 3 1 1 :* 8e52,383x112,0,0,5
window 4 1 1 :* c003,383x112,0,0[383x56,0,0,6,383x55,0,57,7]
window 5 1 1 :* 8e55,383x112,0,0,8
window 6 1 1 :* d4aa,129x109,0,0,23
window 7 1 1 :* 0e13,383x112,0,0{203x112,0,0,29,179x112,204,0[179x74,204,0{123x74,204,0,10,55x74,328,0[55x52,328,0,11,55x21,328,53,12]},179x37,204,75{101x37,204,75,13,77x37,306,75,14}]}
window 7 2 0 :# 5db1,383x112,0,0[383x46,0,0{103x46,0,0,15,103x46,104,0,16,175x46,208,0,17},383x65,0,47{175x65,0,47[175x46,0,47,18,175x18,0,94,19],103x65,176,47,20,103x65,280,47,21}]
window 7 3 0 :#- c759,383x112,0,0,22
window 8 1 1 :* d21c,191x108,0,0,25
window 9 1 1 :* dfa7,81x84,0,0,28
state 11

View File

@@ -0,0 +1,11 @@
pane 0 1 :nvim 1 :* 0 :/home/kap4102 0 zsh :
pane 0 1 :nvim 1 :* 1 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 0 1 :nvim 1 :* 2 :/home/kap4102 0 htop :htop
pane 0 1 :nvim 1 :* 3 :/home/kap4102 1 nvim :nvim
pane 0 1 :nvim 1 :* 4 :/home/kap4102 0 zsh :
pane 0 1 :nvim 1 :* 5 :/home/kap4102 0 sudo :sudo powertop
pane 0 1 :nvim 1 :* 6 :/home/kap4102 0 mc :mc
pane 0 1 :nvim 1 :* 7 :/home/kap4102 0 zsh :
pane 0 1 :nvim 1 :* 8 :/home/kap4102 0 zsh :
window 0 1 1 :* ac51,426x118,0,0[426x98,0,0{101x98,0,0[101x47,0,0,0,101x50,0,48{41x50,0,48,15,59x50,42,48,14}],221x98,102,0,9,102x98,324,0,10},426x19,0,99{105x19,0,99,5,106x19,106,99,13,106x19,213,99,11,106x19,320,99,12}]
state 0

View File

@@ -0,0 +1,11 @@
pane 0 1 :nvim 1 :* 0 :/home/kap4102 0 zsh :
pane 0 1 :nvim 1 :* 1 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 0 1 :nvim 1 :* 2 :/home/kap4102 0 htop :htop
pane 0 1 :nvim 1 :* 3 :/home/kap4102 1 nvim :nvim
pane 0 1 :nvim 1 :* 4 :/home/kap4102 0 zsh :
pane 0 1 :nvim 1 :* 5 :/home/kap4102 0 sudo :sudo powertop
pane 0 1 :nvim 1 :* 6 :/home/kap4102 0 python :/usr/bin/python -O /usr/bin/ranger
pane 0 1 :nvim 1 :* 7 :/home/kap4102 0 zsh :
pane 0 1 :nvim 1 :* 8 :/home/kap4102 0 zsh :
window 0 1 1 :* 05fd,426x118,0,0[426x98,0,0{86x98,0,0[86x47,0,0,0,86x50,0,48{24x50,0,48,15,61x50,25,48,14}],241x98,87,0,9,97x98,329,0,10},426x19,0,99{105x19,0,99,5,106x19,106,99,13,116x19,213,99,11,96x19,330,99,12}]
state 0

View File

@@ -0,0 +1,23 @@
pane 0 1 :zsh 1 :* 0 :/home/kap4102 0 zsh :
pane 0 1 :zsh 1 :* 1 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 0 1 :zsh 1 :* 2 :/home/kap4102 0 htop :htop
pane 0 1 :zsh 1 :* 3 :/home/kap4102 0 sudo :sudo powertop
pane 0 1 :zsh 1 :* 4 :/home/kap4102 0 nvim :nvim
pane 0 1 :zsh 1 :* 5 :/home/kap4102 0 zsh :
pane 0 1 :zsh 1 :* 6 :/home/kap4102 1 zsh :
pane 0 1 :zsh 1 :* 7 :/home/kap4102 0 w3m :/usr/bin/python -O /usr/bin/ranger
w3m http://www.clojure-buch.de/html/master_develch1.html#x4-30001
pane 0 1 :zsh 1 :* 8 :/home/kap4102 0 zsh :
pane 1 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 2 1 :zsh 1 :* 0 :/home/kap4102 0 nvim :nvim
pane 2 1 :zsh 1 :* 1 :/home/kap4102 1 zsh :
pane 2 1 :zsh 1 :* 2 :/home/kap4102 0 w3m :w3m http://clojure-doc.org/articles/tutorials/vim_fireplace.html
pane 2 1 :zsh 1 :* 3 :/home/kap4102 0 zsh :
pane 2 1 :zsh 1 :* 4 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 2 1 :zsh 1 :* 5 :/home/kap4102 0 htop :htop
pane 2 2 :zsh 0 :- 0 :/home/kap4102 1 zsh :
window 0 1 1 :* 10b2,383x112,0,0[383x95,0,0{71x95,0,0[71x44,0,0,18,71x50,0,45{9x50,0,45,21,61x50,10,45,19}],227x95,72,0,20,83x95,300,0,4},383x16,0,96{94x16,0,96,23,95x16,95,96,24,105x16,191,96,5,86x16,297,96,17}]
window 1 1 1 :* c759,383x112,0,0,22
window 2 1 1 :* 82d2,426x118,0,0{243x118,0,0[243x104,0,0,35,243x13,0,105,51],182x118,244,0[182x89,244,0,45,182x28,244,90{108x28,244,90,50,23x28,353,90,47,49x28,377,90,48}]}
window 2 2 0 :- 5367,426x118,0,0,37
state 2

View File

@@ -0,0 +1,24 @@
pane 0 1 :zsh 1 :* 0 :/home/kap4102 0 zsh :
pane 0 1 :zsh 1 :* 1 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 0 1 :zsh 1 :* 2 :/home/kap4102 0 htop :htop
pane 0 1 :zsh 1 :* 3 :/home/kap4102 0 sudo :sudo powertop
pane 0 1 :zsh 1 :* 4 :/home/kap4102 0 nvim :nvim
pane 0 1 :zsh 1 :* 5 :/home/kap4102 0 zsh :
pane 0 1 :zsh 1 :* 6 :/home/kap4102 1 zsh :
pane 0 1 :zsh 1 :* 7 :/home/kap4102 0 w3m :/usr/bin/python -O /usr/bin/ranger
w3m http://www.clojure-buch.de/html/master_develch1.html#x4-30001
pane 0 1 :zsh 1 :* 8 :/home/kap4102 0 zsh :
pane 1 1 :zsh 1 :* 0 :/home/kap4102 1 zsh :
pane 2 1 :screen 1 :* 0 :/home/kap4102 0 nvim :nvim
pane 2 1 :screen 1 :* 1 :/home/kap4102 0 zsh :
pane 2 1 :screen 1 :* 2 :/home/kap4102 0 zsh :
pane 2 1 :screen 1 :* 3 :/home/kap4102 1 screen :screen
pane 2 1 :screen 1 :* 4 :/home/kap4102 0 zsh :
pane 2 1 :screen 1 :* 5 :/home/kap4102 0 python3 :/usr/bin/python3 /usr/bin/glances
pane 2 1 :screen 1 :* 6 :/home/kap4102 0 htop :htop
pane 2 2 :zsh 0 :- 0 :/home/kap4102 1 zsh :
window 0 1 1 :* 10b2,383x112,0,0[383x95,0,0{71x95,0,0[71x44,0,0,18,71x50,0,45{9x50,0,45,21,61x50,10,45,19}],227x95,72,0,20,83x95,300,0,4},383x16,0,96{94x16,0,96,23,95x16,95,96,24,105x16,191,96,5,86x16,297,96,17}]
window 1 1 1 :* c759,383x112,0,0,22
window 2 1 1 :* 3b0f,426x118,0,0{243x118,0,0[243x104,0,0,35,243x13,0,105{121x13,0,105,51,121x13,122,105,52}],182x118,244,0[182x97,244,0,45,182x20,244,98{108x20,244,98,50,23x20,353,98,47,49x20,377,98,48}]}
window 2 2 0 :- 5367,426x118,0,0,37
state 2

View File

@@ -0,0 +1,17 @@
/home/kap4102 348
/home/kap4102 40
/home/kap4102/Downloads/git/st 40
/home/kap4102/Downloads/git/st 40
/home/kap4102 40
/home/kap4102/Downloads 40
/home/kap4102/Downloads 38
/home/kap4102 40
/home/kap4102 40
/home/kap4102 40
/home/kap4102 40
/home/kap4102 40
/home/kap4102 40
/home/kap4102 40
/home/kap4102 40
/home/kap4102 40
/home/kap4102 40