blob: ab6ff263b0f7539b1b7a205c3fb20afe2808a56e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/bin/sh
set -g @left_separator "\ue0b0"
set -g @left_alt_separator "\ue0b1"
set -g @right_separator "\ue0b2"
set -g @right_alt_separator "\ue0b3"
set -g @base0 "#101010"
set -g @base1 "#131313"
set -g @base2 "#171717"
set -g @base3 "#1b1b1b"
set -g @base4 "#202020"
set -g @base5 "#2b2b2b"
set -g @base6 "#2d2d2d"
set -g @base7 "#3a3a3a"
set -g @base8 "#404040"
set -g @gabriel0 "#0E0E0E"
set -g @gabriel1 "#ac616a"
set -g @gabriel2 "#98b386"
set -g @gabriel3 "#bfa86b"
set -g @gabriel4 "#7ba2c3"
set -g @gabriel5 "#999dd4"
set -g @gabriel6 "#8ac6c7"
set -g @gabriel7 "#7F8080"
set -g @gabrielwhite "#ffffff"
set -g @gabriel8 "#2b2b2b"
set -g @gabriel9 "#b3646e"
set -g @gabriel10 "#a0bc8d"
set -g @gabriel11 "#c9b16f"
set -g @gabriel12 "#7fa7c9"
set -g @gabriel13 "#a2a6d4"
set -g @gabriel14 "#91cecf"
set -g @gabriel15 "#91cecf"
set -g pane-border-style fg="colour0"
set -g pane-active-border-style fg="colour8"
set -g status-justify centre
set -g status-style bg="#0E0E0E",fg="colour0"
set -g status-left-length 20
set -g status-right-length 150
set -g window-status-separator " "
set -g window-status-format "#[fg=#{@gabriel7}]#W"
set -g window-status-current-format "#[fg=#{@base0},bg=#{@gabrielwhite},bold] #W "
set -g status-left "#[fg=#{@gabrielwhite},bold] "
#set -g status-right "#[fg=#{@gabriel7},nobold] %H:%M %y-%m-%d | #(uptime | cut -f 4-5 -d ' ' | cut -f 1 -d ',') uptime | 💻 #[fg=#{@gabriel7}]#h "
#set -g status-right "#[fg=#{@gabriel7},nobold] 📅 %H:%M %y-%m-%d | 🎧 #{music_status} #{artist}: #{track} "
set -g status-right "#[fg=#{@gabriel7},nobold] 📅 %H:%M %y-%m-%d "
|