File tree 4 files changed +54
-0
lines changed
4 files changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,48 @@ config.window_frame = {
53
53
font_size = 20.0 ,
54
54
}
55
55
56
+ -- Key bindings
57
+ config .keys = {
58
+ {
59
+ key = ' f' ,
60
+ mods = ' CTRL' ,
61
+ action = wezterm .action .ToggleFullScreen
62
+ },
63
+ {
64
+ key = ' y' ,
65
+ mods = ' CTRL' ,
66
+ action = wezterm .action .ActivateCopyMode
67
+ },
68
+ {
69
+ key = ' i' ,
70
+ mods = ' CTRL' ,
71
+ action = wezterm .action .SplitPane {
72
+ direction = ' Down' ,
73
+ size = { Percent = 20 },
74
+ },
75
+ },
76
+ {
77
+ key = ' H' ,
78
+ mods = ' CTRL' ,
79
+ action = wezterm .action .ActivatePaneDirection ' Left' ,
80
+ },
81
+ {
82
+ key = ' J' ,
83
+ mods = ' CTRL' ,
84
+ action = wezterm .action .ActivatePaneDirection ' Down' ,
85
+ },
86
+ {
87
+ key = ' K' ,
88
+ mods = ' CTRL' ,
89
+ action = wezterm .action .ActivatePaneDirection ' Up' ,
90
+ },
91
+ {
92
+ key = ' L' ,
93
+ mods = ' CTRL' ,
94
+ action = wezterm .action .ActivatePaneDirection ' Right' ,
95
+ },
96
+ }
97
+
56
98
-- Return the final configuration
57
99
return config
58
100
Original file line number Diff line number Diff line change
1
+ mkdir -p ~ /.local/share/fonts/figlet-fonts/
2
+ git clone https://github.com/xero/figlet-fonts.git ~ /.local/share/fonts/figlet-fonts/
Original file line number Diff line number Diff line change 9
9
packages . aarch64-darwin = with nixpkgs . legacyPackages . aarch64-darwin ; {
10
10
ag = silver-searcher ;
11
11
fastfetch = fastfetch ;
12
+ figlet = figlet ;
12
13
go = go_1_22 ;
14
+ htop = htop ;
13
15
hyperfine = hyperfine ;
14
16
neovim = neovim ;
15
17
nodejs = nodejs-18_x ;
Original file line number Diff line number Diff line change
1
+ #! /bin/bash -eux
2
+
3
+ while true ; do
4
+ clear
5
+ date +" %Y - %m - %d %H : %M : %S" | figlet -c -f ~ /.local/share/fonts/figlet-fonts/rustofat.flf
6
+ sleep 60
7
+ done
8
+
You can’t perform that action at this time.
0 commit comments