Update

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-10-06 01:05:23 +0200
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-10-06 01:05:23 +0200
Commit 9a093e4abf075e3f1be42e6d1b223390863ade5e (patch)
-rwxr-xr-x shenanigans.sh 7
-rw-r--r-- tmux.conf 6
2 files changed, 7 insertions, 6 deletions
diff --git a/shenanigans.sh b/shenanigans.sh
...
25
  
25
  
26
# General aliases.
26
# General aliases.
27
  
27
  
28
alias l='ls -lh'
28
alias ls='ls --color=none'
29
alias ll='ls -lha'
29
alias l='ls -lh --color=none'
  
30
alias ll='ls -lha --color=none'
30
alias t='tree -L 2'
31
alias t='tree -L 2'
31
alias ..='cd ..'
32
alias ..='cd ..'
32
alias h='history'
33
alias h='history'
...
34
alias less='less -R'
35
alias less='less -R'
35
alias tmux='tmux -u'
36
alias tmux='tmux -u'
36
alias server='python3 -m http.server 6969'
37
alias server='python3 -m http.server 6969'
  
38
alias www='lynx -accept_all_cookies -scrollbar https://lite.duckduckgo.com'
  
39
alias st='st -g 90x40 -f "BerkeleyMono:style=Bold:size=16:antialias=true:autohint:true"'
37
  
40
  
38
# Custom folder jump commands.
41
# Custom folder jump commands.
39
  
42
  
...
diff --git a/tmux.conf b/tmux.conf
...
12
set-window-option -g pane-base-index 1
12
set-window-option -g pane-base-index 1
13
set -g renumber-windows on
13
set -g renumber-windows on
14
  
14
  
15
set -g status-bg '#333333'
15
set -g status-bg '#222222'
16
set -g status-fg '#ffffff'
16
set -g status-fg '#ffffff'
17
set -g window-status-current-format "#[fg=#ffffff]#[bg=#111111]#[fg=#ffffff]#[bg=#111111] #I:#W #[fg=#ffffff]#[bg=#111111]"
17
set -g window-status-current-format "#[fg=#ffffff]#[bg=#000000]#[fg=#ffffff]#[bg=#000000] #I:#W #[fg=#ffffff]#[bg=#000000]"
18
set -g window-style 'bg=#181818'
  
19
set -g window-active-style 'bg=#111111'
  
20
  
18
  
21
bind-key Up    select-pane -U
19
bind-key Up    select-pane -U
22
bind-key Down  select-pane -D
20
bind-key Down  select-pane -D
...