diff options
Diffstat (limited to '')
-rw-r--r-- | root/.tmux.conf | 15 | ||||
-rw-r--r-- | stylus/cowmail_dockerized_docs.css | 18 |
2 files changed, 33 insertions, 0 deletions
diff --git a/root/.tmux.conf b/root/.tmux.conf new file mode 100644 index 0000000..1e1aa40 --- /dev/null +++ b/root/.tmux.conf @@ -0,0 +1,15 @@ +set -g status-bg colour24 +setw -g mode-keys vi +bind [ copy-mode +bind -T copy-mode-vi 'v' send -X begin-selection +bind -T copy-mode-vi 'y' send -X copy-selection-and-cancel +bind ] paste-buffer +bind Space choose-buffer +bind -n C-h clear-history +bind P pipe-pane -o "cat >>~/.tmuxrecording/#W.log" \; display "Toggled logging to ~/#W.log" +bind | split-window -h +bind - split-window -v +bind -r k select-pane -U +bind -r j select-pane -D +bind -r h select-pane -L +bind -r l select-pane -R diff --git a/stylus/cowmail_dockerized_docs.css b/stylus/cowmail_dockerized_docs.css new file mode 100644 index 0000000..4212d8a --- /dev/null +++ b/stylus/cowmail_dockerized_docs.css @@ -0,0 +1,18 @@ +@-moz-document domain("docs.mailcow.email") { + img { + filter: sepia(1) brightness(0.5) contrast(1) saturate(0.6); + } + + img:hover { + filter: none; + } + + .md-main__inner { + max-width: 90%; + width: 90%; + } + + body { + font-size: 20px; + } +} |