-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zsh_history
10105 lines (10076 loc) · 511 KB
/
.zsh_history
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
: 1686733456:0;yay -S zoxide
: 1686733923:0;yay -S starship
: 1686733946:0;yay -S exa
: 1686733984:0;git clone http://github.com/Pheon-Dev/dmenu.git
: 1686734256:0;touch env.zsh
: 1686734536:0;yay -S firefox
: 1686735165:0;sudo pacman -Q |wc l
: 1686735198:0;sudo pacman -Ss ttf-
: 1686735211:0;sudo pacman -Ss ttf-meslo
: 1686735224:0;sudo pacman -S ttf-meslo-nerd
: 1686735311:0;sudo chsh -S $(which zsh)
: 1686735362:0;git clone http://github.com/Pheon-Dev/zellij.git
: 1686735368:0;cd zellij
: 1686735444:0;git clone http://github.com/Pheon-Dev/st.git
: 1686735941:0;sudo pacman -Syu $(sudo pacman -Ssq ttf-meslo-nerd)
: 1686736093:0;z fonts
: 1686736097:0;z etc
: 1686736108:0;cd conf.d
: 1686736180:0;mv alacritties alacritty
: 1686736408:0;sudo chsh -s $(which zsh)
: 1686736714:0;git clone http://github.com/Pheon-Dev/starship.git
: 1686736774:0;yg lua-language-server
: 1686736808:0;v ~/.bash_profile
: 1686737061:0;yay -S lazygit
: 1686737219:0;mv dwm dwm -2
: 1686737274:0;cd ../st
: 1686737794:0;echo $SHELL
: 1686737883:0;chsh -l
: 1686737896:0;chsh -s /bin/zsh
: 1686737979:0;homectl update --shell=/bin/zsh pheon-dev
: 1686738205:0;cd zsh-syntax-highlighting
: 1686738219:0;rf zsh-syntax-highlighting
: 1686738223:0;git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
: 1686738389:0;cp .bash_profile .zprofile
: 1686738702:0;mkdir plugins config
: 1686738961:0;mv alacritty alacritty-1
: 1686739235:0;v config.h
: 1686739568:0;rf nvim
: 1686739598:0;git clone https://github.com/Pheon-Dev/nvim.git nvim
: 1686739669:0;rf lazy-lock.json spell rice
: 1686739787:0;rf antelope.lua auto-save.lua bufferline.lua cmp.lua codeium.lua colorizer.lua comments.lua fold.lua git.lua go.lua hardtime.lua lualine.lua mini.lua motion.lua muren.lua neorg.lua noice.lua nvim-tree.lua pigeon.lua rust.lua scroll.lua signature.lua telescope.lua terminal.lua text-objects.lua tokyonight.lua treesitter.lua trouble.lua ui.lua utils.lua which-key.lua yanky.lua
: 1686739802:0;rf lsp alpha
: 1686739814:0;cd config
: 1686739830:0;rf colors.lua icons.lua autocmds.lua
: 1686739847:0;cat settings.lua
: 1686739854:0;rf settings.lua
: 1686739864:0;cat keymaps.lua
: 1686739890:0;rf keymaps.lua options.lua
: 1686739901:0;touch keymaps.lua options.lua
: 1686739971:0;touch lua/config/autocmds.lua
: 1686740026:0;cp -r ../nvim-1/lua/plugins/alpha lua/plugins
: 1686740098:0;cd ../nvim-1
: 1686740247:0;cp -r nvim-tree.lua ~/.config/nvim/lua/plugins
: 1686740335:0;../dwm-2
: 1686740764:0;cp -r lua/plugins/which-key.lua ~/.config/nvim/lua/plugins
: 1686740880:0;cp -r lua/config/keymaps.lua ~/.config/nvim/lua/config/keymaps.lua
: 1686740892:0;cp -r lua/config/options.lua ~/.config/nvim/lua/config/options.lua
: 1686741263:0;cp -r lua/config/colors.lua ~/.config/nvim/lua/config
: 1686741296:0;cp -r lua/plugins/tokyonight.lua ~/.config/nvim/lua/plugins
: 1686741393:0;cp -r lua/plugins/comments.lua ~/.config/nvim/lua/plugins
: 1686741524:0;yay -S ripgrep
: 1686741635:0;cp -r lua/plugins/bufferline.lua ~/.config/nvim/lua/plugins
: 1686747975:0;yay -S gum
: 1686748002:0;yay -S fzf
: 1686748014:0;yay -S gh
: 1686748470:0;cp -r lua/plugins/git.lua ~/.config/nvim/lua/plugins
: 1686748749:0;cp -r lua/plugins/rust.lua ~/.config/nvim/lua/plugins
: 1686748986:0;cp -r lua/plugins/lsp ~/.config/nvim/lua/plugins
: 1686749033:0;cp -r lua/config/settings.lua ~/.config/nvim/lua/config
: 1686749070:0;cp -r lua/plugins/signature.lua ~/.config/nvim/lua/plugins
: 1686749111:0;yarn -g lua-language-server
: 1686749123:0;yarn --global lua-language-server
: 1686749318:0;yarn add --global lua-language-server
: 1686750091:0;yay -S npm
: 1686750151:0;cp -r lua/plugins/noice.lua ~/.config/nvim/lua/plugins
: 1686750178:0;cp -r lua/plugins/ui.lua ~/.config/nvim/lua/plugins
: 1686750184:0;cp -r lua/plugins/utils.lua ~/.config/nvim/lua/plugins
: 1686750285:0;v lua/plugins/lualine.lua
: 1686750924:0;cp -r lua/plugins/telescope.lua ~/.config/nvim/lua/plugins
: 1686750960:0;cp -r lua/plugins/treesitter.lua ~/.config/nvim/lua/plugins
: 1686751296:0;cp -r lua/plugins/text-objects.lua ~/.config/nvim/lua/plugins
: 1686753077:0;mkdir alacritty
: 1686753090:0;touch alacritty.yml
: 1686753135:0;../alacritty-1
: 1686753222:0;rf alacritty
: 1686753230:0;mv alacritty-1 alacritty
: 1686754201:0;cd lazygit
: 1686754209:0;cat config.yml
: 1686754216:0;cat state.yml
: 1686754253:0;git clone https://github.com/Pheon-Dev/lazygit.git
: 1686754453:0;sudo pacman -Ssq iosev
: 1686754505:0;sudo pacman -Syu ttf-iosevka-nerd
: 1686754679:0;cd /etc/fonts
: 1686754691:0;ls conf.d
: 1686755274:0;cd ~/.local/share/
: 1686755331:0;mkdir fonts
: 1686755338:0;sudo mkdir fonts
: 1686755392:0;sudo mv /etc/fonts/conf.d/Comic* ./fonts
: 1686755418:0;sudo mv /etc/fonts/conf.d/Mes* ./fonts
: 1686755693:0;mv st-1 st
: 1686755758:0;git clone https://github.com/Pheon-Dev/st.git
: 1686755897:0;rf st-2
: 1686756015:0;yay -S fd joshuto
: 1686756131:0;mv dwm-1 arco-dwm
: 1686756139:0;mv dwm-2 arco-dwm
: 1686757544:0;joshuto
: 1686758589:0;gst
: 1686758598:0;ga
: 1686758604:0;ga .
: 1686758831:0;which gt
: 1686758893:0;gt -i dmenu
: 1686758899:0;gt -s dmenu
: 1686758915:0;yay -S pass
: 1686760110:0;cp -r ~/.config/nvim-1/lua/plugins/colorizer.lua ~
: 1686760142:0;mv colorizer.lua ~/.config/nvim/lua/plugins
: 1686760215:0;mv Downloads Rain
: 1686760493:0;rf %home%pheon-dev%.config%alacritty%alacritty.yml.swp
: 1686760637:0;echo has('clipboard')
: 1686764605:0;sudo make clean install
: 1686770259:0;yay -S iwctl
: 1686775904:0;sudo pacman -Syu iwctl
: 1686778164:0;yay -S iwctl xprop
: 1686778175:0;sudo pacman -Syu iwctl xprop
: 1686778420:0;mv Downloads Cloud
: 1686778849:0;yay -S ly
: 1686816120:0;nmcli dev wifi connect 'wifi4'
: 1686816175:0;sudo pacman -Syu ly
: 1686817067:0;cd /home/pheon-dev/.mozilla/firefox/zp8gto6n.default-release
: 1686817217:0;v userChrome.css
: 1686817252:0;cat userChrome.css
: 1686818850:0;which logout
: 1686819226:0;smci
: 1686819282:0;dmenu
: 1686819354:0;dmenu_run
: 1686819396:0;dmenu -l 10 -c
: 1686819543:0;sudo -Ss dmenu
: 1686819557:0;sudo pacman -Ss dmenu
: 1686819817:0;sudo pacman -Syu dmenu
: 1686819921:0;lout
: 1686819972:0;mv dmenu dmenu-1
: 1686820066:0;git clone https://git.suckless.org/dmenu
: 1686821557:0;mv dwm-2 dwm
: 1686821602:0;mv dmenu dmenu-default
: 1686821612:0;mv dmenu-1 dmenu
: 1686821680:0;yay -S rofi picom
: 1686821724:0;rf *-default
: 1686821784:0;yay -S dunst
: 1686821918:0;mkdir rofi
: 1686821922:0;cd rofi
: 1686821935:0;touch launcher.rasi
: 1686822165:0;rofi -dump-config > ~/.config/rofi/config.rasi
: 1686822256:0;mkdir picom
: 1686822270:0;v picom.conf
: 1686822518:0;picom --experimental-backends
: 1686822843:0;git clone https://github.com/Pheon-Dev/dunst.git
: 1686823011:0;mkdir dunst
: 1686823014:0;cd dunst
: 1686823025:0;v dunstrc
: 1686823574:0;gt -i rofi
: 1686823728:0;st
: 1686823835:0;rofi
: 1686823883:0;rofi -show
: 1686823917:0;ls | rofi -show
: 1686824178:0;cd picom
: 1686824188:0;gt -i picom
: 1686824290:0;rofi -show run
: 1686824342:0;rofi -show drun
: 1686824405:0;rofi -show -sort run
: 1686824420:0;rofi -sort run
: 1686824427:0;rofi -show drun -sort
: 1686824435:0;rofi -show run -sort
: 1686824495:0;rofi -show run -sort -theme ~/.config/rofi/launcher.rasi
: 1686824775:0;../st
: 1686824911:0;gt -i st
: 1686825025:0;g branch -m minimal
: 1686825160:0;mkdir -p lua/core lua/plugins
: 1686825755:0;yay -S brew-git
: 1686825776:0;yay -S brew
: 1686826718:0;touch keymaps.lua options.lua autocmds.lua
: 1686827126:0;l ncim
: 1686827131:0;l nvim
: 1686827188:0;../dmenu
: 1686828142:0;v init.lua
: 1686829074:0;mv core config
: 1686829421:0;mv config core
: 1686829696:0;rf config
: 1686829838:0;cp -r lua/config/colors.lua ~/.config/nvim/lua/core
: 1686830516:0;cp -r lua/plugins/alpha ~/.config/nvim/lua/plugins
: 1686830733:0;cp -r lua/plugins/terminal.lua ~/.config/nvim/lua/plugins
: 1686831514:0;cp -r lua/plugins/auto-save.lua ~/.config/nvim/lua/plugins
: 1686832145:0;cp -r lua/plugins/scroll.lua ~/.config/nvim/lua/plugins
: 1686832195:0;cp -r lua/plugins/colorizer.lua ~/.config/nvim/lua/plugins
: 1686832201:0;cp -r lua/plugins/mini.lua ~/.config/nvim/lua/plugins
: 1686832292:0;cp -r lua/plugins/yanky.lua ~/.config/nvim/lua/plugins
: 1686832299:0;cp -r lua/plugins/motion.lua ~/.config/nvim/lua/plugins
: 1686832313:0;cp -r lua/plugins/fold.lua ~/.config/nvim/lua/plugins
: 1686832366:0;cp -r lua/plugins/lualine.lua ~/.config/nvim/lua/plugins
: 1686832374:0;cp -r lua/plugins/pigeon.lua ~/.config/nvim/lua/plugins
: 1686832381:0;cp -r lua/plugins/antelope.lua ~/.config/nvim/lua/plugins
: 1686836397:0;z dmenu
: 1686837035:0;cp -r ~/.config/nvim-1/lua/util.lua ~/.config/nvim/lua
: 1686837411:0;yay -S iwconfig
: 1686837438:0;sudo pacman -Syu iwconfig
: 1686837664:0;yay -S iw
: 1686837672:0;iw
: 1686837694:0;iw wlan0 info
: 1686837775:0;yay -S wireless_tools
: 1686838830:0;v ~/.zshrc
: 1686841905:0;cp -r ~/.config/nvim-1/lua/plugins/text-objects.lua ~/.config/nvim/lua/plugins
: 1686842165:0;cp -r ~/.config/nvim-1/lua/plugins/trouble.lua ~/.config/nvim/lua/plugins
: 1686843174:0;cp -r ~/.config/nvim-1/lua/plugins/lsp/diagnostics.lua ~/.config/nvim/lua/plugins/lsp
: 1686843187:0;cp -r ~/.config/nvim-1/lua/plugins/lsp/format.lua ~/.config/nvim/lua/plugins/lsp
: 1686843209:0;cp -r ~/.config/nvim-1/lua/plugins/lsp/keymaps.lua ~/.config/nvim/lua/plugins/lsp
: 1686843217:0;cp -r ~/.config/nvim-1/lua/plugins/lsp/servers.lua ~/.config/nvim/lua/plugins/lsp
: 1686843231:0;cp -r ~/.config/nvim-1/lua/plugins/lsp/init.lua ~/.config/nvim/lua/plugins/lsp
: 1686843485:0;cp -r ~/.config/nvim-1/lua/plugins/rust.lua ~/.config/nvim/lua/plugins
: 1686843493:0;cp -r ~/.config/nvim-1/lua/plugins/go.lua ~/.config/nvim/lua/plugins
: 1686843553:0;cd lua/plugins
: 1686843575:0;rf which-key.lua
: 1686843587:0;cp -r ~/.config/nvim-1/lua/plugins/which-key.lua ~/.config/nvim/lua/plugins
: 1686843979:0;cp -r ~/.config/nvim-1/lua/config/settings.lua ~/.config/nvim/lua/core
: 1686844741:0;cp -r ~/.config/nvim-1/lua/plugins/cmp.lua ~/.config/nvim/lua/plugins
: 1686844779:0;cp -r ~/.config/nvim-1/lua/plugins/signature.lua ~/.config/nvim/lua/plugins
: 1686845354:0;cd ../../.local/share/nvim/lazy/
: 1686845360:0;cd cmp-tabnine
: 1686846729:0;z 1
: 1686847857:0;cp -r ~/.config/nvim-1/lua/config/icons.lua ~/.config/nvim/lua/core
: 1686896620:0;yay -S aria2c toipe
: 1686896763:0;yay -S mpv youtube-dl
: 1686899768:0;yg clangd
: 1686902352:0;nmcli dev wifi connect 'wifi7' password 'cueagaba'
: 1686902384:0;yay -Syu fm
: 1686924190:0;yay -Syu clangd
: 1686924487:0;../rofi
: 1686932169:0;yay -Syu docker
: 1686932874:0;yay -Syu unzip
: 1686933025:0;cd mason
: 1686940690:0;cd pkg
: 1686940743:0;mkdir -p github/Pheon-Dev
: 1686940802:0;gob
: 1686940973:0;which f
: 1686940986:0;goi
: 1686941527:0;sudo mkdir /mnt/usb-a
: 1686941656:0;cp -r /mnt/usb-b/wall ../
: 1686993950:0;sudo pacman -Ssq tt-f
: 1686994003:0;sudo pacman -Syu $(sudo pacman -Ssq ttf-space)
: 1686994580:0;sudo pacman -Ssq ttf-
: 1686995412:0;sudo git clone https://github.com/soldoestech/hyprland.git
: 1686995497:0;sudo chown -R pheon-dev:pheon-dev hyprland
: 1686995536:0;chmod +x set-hypr
: 1686995551:0;mv starship.toml starship.tomls
: 1686995566:0;cp ~/.config/starship/starship.toml .
: 1686996107:0;sudo pacman -Q xdg
: 1686996127:0;yay -Q fm
: 1686996131:0;yay -Q xdg
: 1686996151:0;yay -SQ xdg
: 1686996192:0;yay -Q xdg-desktop-portal-gnome
: 1686996195:0;yay -Q xdg-desktop-portal-gtk
: 1686997378:0;../neofetch
: 1686997893:0;env CGO_ENABLED=0 go install -ldflags="-s -w" github.com/gokcehan/lf@latest
: 1686998105:0;lf -doc
: 1686998258:0;mkdir lf
: 1686998479:0;lf -doc | bat
: 1686998531:0;env CGO_ENABLED=0 go uninstall -ldflags="-s -w" github.com/gokcehan/lf@latest
: 1686998544:0;env CGO_ENABLED=0 go remove -ldflags="-s -w" github.com/gokcehan/lf@latest
: 1686998606:0;rf lf
: 1686998616:0;fm
: 1686999091:0;md joshuto
: 1686999138:0;touch {bookmarks, icons}.toml
: 1686999151:0;rf \{bookmarks, icons\}.toml
: 1686999167:0;touch (bookmarks, icons).toml
: 1686999393:0;touch {bookmarks icons}.toml
: 1686999930:0;z hy
: 1687000209:0;./set-hypr
: 1687000406:0;rf hyprland
: 1687000412:0;sudo rf hyprland
: 1687000421:0;sudo rm -rf hyprland
: 1687000475:0;rf hypr
: 1687000517:0;yay -Q hyp
: 1687000520:0;yay -Q hypr
: 1687000526:0;yay -Q Hyprland
: 1687000537:0;sudo pacman -Q Hyprland
: 1687000548:0;which Hyprland
: 1687000954:0;sudo mv Hypr* ~/Rain
: 1687001019:0;cd /sbin
: 1687001041:0;Xwayland
: 1687001105:0;cd Rain
: 1687001138:0;sudo mv Hypr* /sbin
: 1687001270:0;sudo vim /etc/ly/config.ini
: 1687001723:0;touch bookmarks.toml isons.toml joshuto.toml keymap.toml mimetype.toml preview_file.sh theme.toml
: 1687002286:0;gt -i joshuto
: 1687005800:0;yay -Q notify
: 1687005812:0;yay -Ssq notify
: 1687005825:0;yay -Ssq notify-send
: 1687006982:0;z dunst
: 1687007513:0;yay -S notify-send
: 1687007541:0;sudo pacman -S notify-send
: 1687007603:0;dunst "hello"
: 1687007631:0;systemd-notify "hello"
: 1687007754:0;yay -S notification-daemon
: 1687008158:0;yay -S libnotify
: 1687008210:0;dunst &
: 1687008809:0;yay -S dunstify
: 1687009016:0;dunstify "warn" "hello"
: 1687009033:0;dunstify "warn" "hello" -u low
: 1687009472:0;if [$(cat /sys/class/power_supply/BAT0/status) = "Not charging"]; then dunstify "hello" -u critical end
: 1687009496:0;if [[ $(cat /sys/class/power_supply/BAT0/status) == "Not charging"]]; then dunstify "hello" -u critical end
: 1687009517:0;if [[ $(cat /sys/class/power_supply/BAT0/status) == "Not charging"]]; dunstify "hello" -u critical end
: 1687010580:0;rf zsh-autocomplete
: 1687011558:0;chmod +x notify
: 1687011564:0;./notify
: 1687011706:0;which zsh
: 1687012438:0;./notify.zsh
: 1687012449:0;./notify.zsh &
: 1687014248:0;z picom
: 1687019865:0;chmod +x battery
: 1687019871:0;chmod +x battery.sh
: 1687019879:0;./battery.sh
: 1687019950:0;mv battery.sh battery
: 1687019963:0;yay -S acpi
: 1687020235:0;notify-send "hello"
: 1687020432:0;./battery
: 1687026010:0;sudo cp -r Documents/Neovim ~/
: 1687026044:0;sudo cp -r Documents/NextJS ~/
: 1687026077:0;sudo cp -r Documents/Pheon-Dev/* ~/go/pkg/github/Pheon-Dev
: 1687026143:0;sudo rm -rf NextJS
: 1687026149:0;mkdir ts
: 1687026163:0;mv Neovim neovim
: 1687026188:0;l rust
: 1687040398:0;sudo cp -r /mnt/usb-b/Documents .
: 1687040773:0;sudo rm -rf /mnt/usb-b/Documents/*
: 1687041245:0;sudo rm -rf rust
: 1687041282:0;sudo rm -rf ts
: 1687041359:0;mpv ./kimetsu-no-yaiba/*
: 1687041385:0;mkdir anime
: 1687041410:0;sudo mv kimetsu-no-yaiba ~/anime
: 1687041430:0;l kimetsu-no-yaiba
: 1687041487:0;sudo rm -rf Documents
: 1687041497:0;sudo rm -rf wall iso
: 1687047974:0;sudo cp -r /mnt/usb-b/* ./Documents
: 1687048221:0;sudo cp -r ~/.config .
: 1687048348:0;cp -r ~/.z* .
: 1687048353:0;sudo cp -r ~/.z* .
: 1687049352:0;nmcli dev wifi connect '.'
: 1687049358:0;yay -Syu zoxide z
: 1687049379:0;yay -Syu gum
: 1687049445:0;/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
: 1687049521:0;brew install gh
: 1687049586:0;sudo cp -r /mnt/usb-b/.config/nvim .
: 1687049739:0;sudo chown -R pheon-dev:pheon-dev nvim
: 1687049791:0;l /mnt/usb-b/.config
: 1687049946:0;sudo v /etc/ly/config.ini
: 1687050073:0;sudo chown -R pheon-dev:pheon-dev btop
: 1687049826:4;sudo cp -r /mnt/usb-b/.config/btop ~/.config
: 1687050115:0;sudo cp -r /mnt/usb-b/.config/wall ~/.config
: 1687050149:0;rf picom
: 1687050152:0;sudo cp -r /mnt/usb-b/.config/picom ~/.config
: 1687050169:0;sudo chown -R pheon-dev:pheon-dev wall
: 1687050176:0;sudo chown -R pheon-dev:pheon-dev picom
: 1687075889:0;sudo pacman -Q |wc -l
: 1687076235:0;history | grep yay
: 1687076361:0;yay -Syu lazygit ripgrep pass fzf npm yarn unzip mpv aria2c youtube-dl docker wireless_tools fd
: 1687076505:0;yay -Syu acpi
: 1687076648:0;echo "yay -Syu lazygit ripgrep pass fzf npm yarn unzip mpv aria2c youtube-dl docker wireless_tools fd" > ~/.config/dwm/README.md
: 1687076767:0;history | grep yay > ~/.config/dwm/ setup
: 1687076777:0;history | grep yay > ~/.config/dwm/setup
: 1687076790:0;history | grep pacman > ~/.config/dwm/setup
: 1687076843:0;history | grep pacman | echo > ~/.config/dwm/setup
: 1687076852:0;history | grep yay | echo > ~/.config/dwm/setup
: 1687076859:0;history | grep brew | echo > ~/.config/dwm/setup
: 1687076890:0;echo $(history) > ~/.config/dwm/setup
: 1687077768:0;cd /home/pheon-dev/.cache/mozilla/firefox/4yw0z4lr.default-release
: 1687077808:0;mkdir chrome
: 1687077851:0;gh repo clone Pheon-Dev/userChrome.css
: 1687077867:0;mv userChrome.css/* .
: 1687077883:0;l userChrome.css
: 1687077892:0;mv userChrome.css/userChrome.css .
: 1687077906:0;mv userChrome.css sss
: 1687077914:0;mv sss/userChrome.css .
: 1687077933:0;rf sss README.md screenshot.png
: 1687078155:0;cd /home/pheon-dev/.mozilla/firefox/4yw0z4lr.default-release
: 1687078173:0;mv chrome /home/pheon-dev/.mozilla/firefox/4yw0z4lr.default-release
: 1687078331:0;yay -Syu xprop
: 1687078368:0;sudo pacman -Syu xprop
: 1687078423:0;sudo pacman -Ssq xprop
: 1687078431:0;yay -Ssq xprop
: 1687078459:0;yay -Syu xproperty
: 1687078543:0;yay -R xproperty
: 1687078989:0;cd ../.local/share/nvim/lazy/nvim-tree.lua
: 1687079048:0;../nvim-web-devicons
: 1687079225:0;yay -Syu $(yay -Ssq ttf-meslo)
: 1687079466:0;cd /usr/local/share/
: 1687079727:0;sudo mv TTF/* .
: 1687079809:0;sudo rm -rf TTF
: 1687081552:0;yay -Syu xdg
: 1687081565:0;yay -Syu xdg-settings
: 1687081752:0;yay -Syu xdg-open
: 1687082198:0;rf setup
: 1687082227:0;history > README.md
: 1687082493:0;yay -Syu glow
: 1687082590:0;v setup
: 1687082948:0;mv setup setup.sh
: 1687082957:0;chmod +x setup.sh
: 1687084859:0;yay -Syu bat
: 1687085021:0;history grep font
: 1687087059:0;mkdir dotfiles
: 1687087076:0;cd ../dotfiles
: 1687087089:0;gt -i dotfiles
: 1687087114:0;mv setup* ../dotfiles
: 1687087170:0;mv dotfiles ..
: 1687087267:0;chmod +x setup
: 1687089441:0;chmod +x dotfiles
: 1687090276:0;g push -f main
: 1687090442:0;cat env.zsh
: 1687090720:0;z files
: 1687091480:0;gh repo clone Pheon-Dev/joshuto
: 1687091669:0;git clone https://github.com/Pheon-Dev/joshuto.git
: 1687091678:0;cd joshuto
: 1687091733:0;gpg-gen
: 1687091929:0;gpg-edit
: 1687092013:0;pass-init 1DF101BB1D70A4C2DBD8060C94619282F911437C
: 1687092105:0;pass-insert github/password
: 1687092164:0;pass-insert github/token
: 1687092210:0;pass-show github
: 1687092543:0;pass-edit github
: 1687092555:0;pass-edit github/password
: 1687092986:0;which paste
: 1687092990:0;paste
: 1687093386:0;../.password-store
: 1687093401:0;gt -i
: 1687093455:0;pass-show github/tokan
: 1687093678:0;gt -i pwd-store
: 1687093882:0;pass-ginit
: 1687093903:0;pass-remote
: 1687093943:0;g branch -m main
: 1687094292:0;pass-insert open-ai/api-key
: 1687094333:0;pass-insert pass/pub-key
: 1687094740:0;yay -Syu nb
: 1687094784:0;cd .nb
: 1687094833:0;gh repo clone Pheon-Dev/nb .nb
: 1687094931:0;cd .config/zsh
: 1687094991:0;z dot
: 1687095214:0;cd btop
: 1687095229:0;gt -i btop
: 1687095394:0;which z
: 1687097583:0;pkill picom
: 1687097589:0;picom
: 1687098355:0;yay -R z zoxide
: 1687098379:0;yay -Syu z zoxide
: 1687098524:0;z store
: 1687105798:0;pass --help
: 1687160816:0;nmcli dev wifi connect wifi4 password cueagaba
: 1687162583:0;which zz
: 1687163178:0;mv Downloads kaminari
: 1687163287:0;sudo pacman -Ssq aria2c
: 1687163295:0;sudo pacman -Syu aria2c
: 1687163316:0;brew install aria2c
: 1687163645:0;git clone https://aur.archlinux.org/snapd.git\
: 1687163654:0;sudo git clone https://aur.archlinux.org/snapd.git\
: 1687165506:0;sudo snapi aria2c
: 1687166209:0;nmcli dev wifi connect wifi7 password cueagaba
: 1687166728:0;run-help wget
: 1687166740:0;yay -Syu wget
: 1687167402:0;wget https://download.freebsd.org/releases/amd64/amd64/ISO-IMAGES/13.2/FreeBSD-13.2-RELEASE-amd64-memstick.img
: 1687167436:0;rf FreeBSD-13.2-RELEASE-amd64-memstick.img.1
: 1687168486:0;yay -Syu wif
: 1687168489:0;yay -Syu wifi
: 1687168704:0;which dd
: 1687168750:0;mkdir canvas scene
: 1687168764:0;gh repo clone jeremychone-channel/rust-web-app-preview
: 1687168847:0;cn marlin
: 1687168859:0;gt -i marlin
: 1687168926:0;../../scene/rust-web-app-preview
: 1687169020:0;ca tokio F full
: 1687171719:0;zellij session-list
: 1687172591:0;ca serde_json axum tower-cookies sqlb rand hmac sha2 base64-url lazy-regex time async-trait strum_macros anyhow httpc-test serial_test
: 1687172662:0;ca -F tracing-subscriber -F env-filter
: 1687172695:0;ca serde -F derive
: 1687172713:0;ca uuid -F v4
: 1687172725:0;ca uuid -F fast-rng
: 1687172759:0;ca sqlx -F runtime-tokio-rustls
: 1687172775:0;ca sqlx -F postgres
: 1687172788:0;ca sqlx -F uuid
: 1687172866:0;ca tower-http -F fs
: 1687181206:0;z rust
: 1687181371:0;cn narwhal
: 1687181461:0;ca termion
: 1687181982:0;yay -Syu cargo-watch
: 1687182034:0;cargo-watch
: 1687184011:0;ca tui -F tui/termion
: 1687184560:0;ca crossterm
: 1687184814:0;ca tui
: 1687188968:0;cr tui termion crossterm
: 1687188993:0;cx tui termion crossterm
: 1687189010:0;ca termwiz rand
: 1687192735:0;cx rand termwiz
: 1687192978:0;sudo pacman -Q
: 1687199901:0;yay -Syu xcape
: 1687200356:0;xcape -e 'Control_L=Escape'
: 1687200633:0;yay -Syu python3 python3-pip
: 1687200685:0;yay -Syu pip
: 1687205356:0;dfgv
: 1687206131:0;chmod -x ../nvim
: 1687206147:0;chmod +x ../nvim
: 1687206155:0;sudo chmod +x ../nvim
: 1687206184:0;l lua
: 1687206188:0;l lua/plugins
: 1687207576:0;pass-insert hugging-face/pass
: 1687207890:0;pass-insert hugging-face/token
: 1687208494:0;yay -S pip3
: 1687208514:0;yay -Syu python3-pip
: 1687208580:0;yay -Ssq pip
: 1687208651:0;yay -Ssq python3
: 1687208856:0;sudo pacman -Syu python3-pip
: 1687208929:0;sudo pacman -Syu python-pip3
: 1687209038:0;sudo pacman -Syu python-pip
: 1687209067:0;yay -Syu python-pip
: 1687209146:0;pip help
: 1687209189:0;pip install huggingface_hub
: 1687209936:0;z narwhal
: 1687245851:0;grep -E "(ctrl|caps):" /usr/share/X11/xkb/rules/base.lst
: 1687245972:0;grep -E "(ctrl|caps|alt):" /usr/share/X11/xkb/rules/base.lst
: 1687245986:0;grep -E "(alt):" /usr/share/X11/xkb/rules/base.lst
: 1687245993:0;grep -E "(ctrl):" /usr/share/X11/xkb/rules/base.lst
: 1687248850:0;fd conf
: 1687248863:0;l | fd
: 1687249058:0;cd pkg/
: 1687249138:0;md github/Pheon-Dev
: 1687249143:0;cd github/Pheon-Dev
: 1687254554:0;yay -Syu gtk-utils
: 1687254749:0;cd /etc/
: 1687255192:0;gh repo clone Pheon-Dev/flamingo
: 1687255469:0;rf lazygit-1
: 1687255616:0;mkdir flamingo
: 1687255619:0;cd flamingo
: 1687255628:0;touch config.yaml
: 1687256332:0;loadkeys gb
: 1687256338:0;loadkeys uk
: 1687256356:0;sudo loadkeys uk
: 1687257898:0;mv github src
: 1687257922:0;cd src/github/Pheon-Dev/flamingo
: 1687257960:0;mv github github.com
: 1687267327:0;z kaminari
: 1687267332:0;ari https://download.freebsd.org/releases/amd64/amd64/ISO-IMAGES/13.2/FreeBSD-13.2-RELEASE-amd64-memstick.img
: 1687268385:0;dd if=FreeBSD-13.2-RELEASE-amd64-memstick.img of=/dev/sdb bs=1M conv=sync
: 1687268393:0;sudo dd if=FreeBSD-13.2-RELEASE-amd64-memstick.img of=/dev/sdb bs=1M conv=sync
: 1687271677:0;mkdir pouch
: 1687271706:0;sudo mv /mnt/usb-b/* pouch
: 1687352173:0;nf
: 1687352185:0;q
: 1687353185:0;gh repo clone Pheon-Dev/dwmbar
: 1687353246:0;gh repo clone Pheon-Dev/dwm arco-dwm
: 1687353269:0;cd arco-dwm
: 1687353282:0;cp -r dwmbar ..
: 1687353405:0;../dwm
: 1687353903:0;picom &
: 1687354035:0;cp -r ../dwmbar .
: 1687354346:0;git clone https://github.com/UtkarshVerma/dwmblocks-async.git
: 1687354545:0;dwmblocks
: 1687354808:0;mv dwm dwm-default
: 1687354810:0;gh repo clone UtkarshVerma/dwm
: 1687354970:0;rf dwm
: 1687354979:0;mv dwm-default dwm
: 1687354984:0;git clone https://github.com/siduck/chadwm --depth 1 ~/.config/chadwm
: 1687355023:0;mv eww ..
: 1687355034:0;cd chadwm
: 1687355107:0;yay -Syu libimg2-dev
: 1687355315:0;rf chadwm eww
: 1687355591:0;sudo pacman -Syu python3
: 1687355618:0;cd kaminari
: 1687355636:0;touch a.py
: 1687355704:0;python a.py
: 1687355712:0;pip install a
: 1687355974:0;../arco-dwm
: 1687374475:0;lj
: 1687374486:0;chmod +x ~/.xinitrc
: 1687375481:0;which sh
: 1687375740:0;sudo systemctl restart NetworkManager
: 1687376262:0;zellij options --theme dracula
: 1687379453:0;z arco
: 1687422873:0;cd .local/share/nvim/lazy/pigeon
: 1687426563:0;cd rust/scene/rust-web-app-preview
: 1687426774:0;../../canvas
: 1687427065:0;cw
: 1687427078:0;cw run
: 1687427083:0;which cw
: 1687427091:0;cw -x run
: 1687427279:0;http 127.0.0.1:3000 /
: 1687427312:0;http GET http://127.0.0.1:3000 /
: 1687427323:0;http GET http://127.0.0.1:3000
: 1687427495:0;http GET http://127.0.0.1:3000/hello
: 1687427789:0;gt -s manta-api
: 1687428071:0;rf manta-api
: 1687428079:0;cn manta-api
: 1687428132:0;g branch -m ray
: 1687428171:0;z marline
: 1687430135:0;echo "hello" | xclip -o >> a
: 1687430184:0;export DISPLAY=:0.0
: 1687432803:0;alis port
: 1687432817:0;alis kill
: 1687432952:0;yay -Syu fuser
: 1687451310:0;history | grep type
: 1687536180:0;pass-insert kra/pass
: 1687536251:0;pass-show kra/pass
: 1687536292:0;pass-insert docker/pass
: 1687536344:0;pass-show docker/pass
: 1687536529:0;pass-insert featherb49/pass
: 1687536591:0;pass-insert bb6332608/pass
: 1687537135:0;rf dwmblocks-async
: 1687537141:0;sudo rf dwmblocks-async
: 1687537164:0;cd dwmblocks-async
: 1687537189:0;sudo rm -rf dwmblocks-async
: 1687537315:0;nvim ~/.xinitrc
: 1687537744:0;z josh
: 1687537751:0;cd .config/joshuto
: 1687543522:0;cp ~/.config/flamingo/config.yaml example-config.yaml
: 1687544914:0;yay -Syu flameshot
: 1687545208:0;mv Picture.png ~/go/src/github.com/Pheon-Dev/flamingo/flamingo.png
: 1687545749:0;gin
: 1687551018:0;z joshuto
: 1687551375:0;alis gp
: 1687551379:0;alis go
: 1687551412:0;alis init
: 1687552955:0;got
: 1687552986:0;rf go.mod
: 1687553151:0;ls -a
: 1687553180:0;l Documents
: 1687553518:0;go install github.com/spf13/cobra-cli@latest
: 1687553870:0;rf Documents
: 1687553890:0;cd go/src/github.com/Pheon-Dev
: 1687553954:0;rf zebra
: 1687554022:0;got zebra
: 1687554196:0;goat goat
: 1687554408:0;./dotfiles
: 1687554562:0;mv ~/.config/zsh/dotfiles .
: 1687554577:0;mv dotfiles port
: 1687554769:0;gcl "flamingo config file"
: 1687554789:0;gc! "flamingo config file"
: 1687595697:0;yay -Syu pynvim
: 1687596267:0;python -m pip install pynvim
: 1687596376:0;yay -Syu termtyper
: 1687596472:0;yay -R termtyper
: 1687596514:0;yay -Rns
: 1687596524:0;yay -Rns termtyper
: 1687596543:0;sudo pacman -Rns termtyper
: 1687596554:0;yay -Q term
: 1687596574:0;yay -Rns termtyper-git
: 1687596587:0;termtyper
: 1687596599:0;yay -Q termtyper
: 1687596602:0;yay -Q termtyper-git
: 1687596645:0;pip install pynvim
: 1687597357:0;cd ~/.local/share/nvim/lazy/nvim-various-textobjs
: 1687606081:0;gum confirm && echo "yes selected" || echo "not selected"
: 1687606161:0;cd $(gum choose)
: 1687606183:0;gum choos | cd
: 1687606195:0;gum choose $(ls) | cd
: 1687606223:0;gum choose $(l) | cd
: 1687606251:0;gum choose $(ll) | cd
: 1687606302:0;cd $(gum file)
: 1687606338:0;cd $(gum folder)
: 1687606400:0;nvim $(gum file)
: 1687607344:0;cut --help
: 1687608742:0;cd marlin
: 1687609015:0;yay -Ssq tauri
: 1687609052:0;yay -Ssq vite
: 1687609183:0;yay -Syu vite-git
: 1687619517:0;touch a.ts
: 1687620173:0;mv a a.http
: 1687620389:0;http GET http://127.0.0.1:3000/
: 1687620677:0;ca thiserror
: 1687685582:0;for i in $(seq 1 10); do /usr/bin/time $SHELL -i -c exit; done
: 1687686230:0;for i in $(seq 1 10); do time $SHELL -i -c exit; done
: 1687686485:0;yay -Syu ffmpeg
: 1687687039:0;exec zsh
: 1687687614:0;git
: 1687688702:0;gh repo clone marlonrichert/zsh-autocomplete
: 1687690279:0;ls dotfiles/btop/themes
: 1687690499:0;cd go/src/github.com/Pheon-Dev/goat
: 1687691088:0;cd zsh-autocomplete
: 1687692028:0;fzf --bind 'enter:become(nvim {})'
: 1687692482:0;z comp
: 1687694708:0;wwcd
: 1687694718:0;cdl
: 1687695517:0;cd fzf-tab/lib/zsh-ls-colors
: 1687695536:0;cat ls-colors.zsh
: 1687697461:0;echo $hostname
: 1687699208:0;cd ../arco-dwm/dwmbar
: 1687801226:0;sudo cp -r .password-store /mnt/usb-b
: 1687801276:0;sudo cp -r .codeium /mnt/usb-b
: 1687801362:0;mv wall dwm
: 1687801529:0;sudo cp -r /etc/ly/config.ini /mnt/usb-b
: 1687848075:0;yay -Syu lf
: 1687848174:0;yay -Syu lf-ueberzuf
: 1687848178:0;yay -Syu lf-ueberzug
: 1687848227:0;yay -Syu ueberzug
: 1687848362:0;md lf
: 1687848397:0;touch lfrc lfcd.sh lfpreview
: 1687848630:0;mkdir lf-ueberzug
: 1687848634:0;cd lf-ueberzug
: 1687848654:0;touch lfrc-ueberzug
: 1687848722:0;../lf
: 1687848957:0;curl https://raw.githubusercontent.com/gokcehan/lf/master/etc/colors.example -o ~/.config/lf/colors
: 1687848965:0;curl https://raw.githubusercontent.com/gokcehan/lf/master/etc/icons.example -o ~/.config/lf/icons
: 1687848990:0;gt -i lf
: 1687849231:0;mv lfpreview preview
: 1687849244:0;chmod +x preview
: 1687849588:0;rf lf-ueberzug
: 1687849889:0;chmod +x clean
: 1687849972:0;chmod +x ueberzug
: 1687850352:0;bat lfcd.sh
: 1687850364:0;which bat
: 1687850623:0;cd ../dwm/wall
: 1687850675:0;../nvim
: 1687850681:0;chmod -x ./*
: 1687850708:0;cd lua/core
: 1687850723:0;chmod +x ./*
: 1687850764:0;touch a.lua
: 1687850792:0;mv a.lua a
: 1687850801:0;l a
: 1687850817:0;nvim a.lua
: 1687850899:0;cd core
: 1687850923:0;cd ../plugins
: 1687850933:0;cd alpha
: 1687850942:0;cd ../lsp
: 1687850949:0;chmod -x ./*.lua
: 1687851093:0;chmod -x ./*.json
: 1687851096:0;chmod -x ./*.toml
: 1687851370:0;cp /mnt/usb-b/zsh/zsh-autocomplete/zsh-autocomplete.plugin.zsh ../zsh/zsh-autocomplete/zsh-autocomplete.plugin.zsh
: 1687851981:0;$EDITOR
: 1687852322:0;sudo
: 1687873736:0;yay -Ssq Iosevka
: 1687874502:0;bat --italic-text=always alacritty.yml
: 1687874584:0;yay -Syu man
: 1687874926:0;man bat
: 1687874959:0;man bat | bat
: 1687875121:0;yay -Syu tldr
: 1687875222:0;tldr bat
: 1687875452:0;fzf --preview 'bat --color=always --style=numbers --line-range=:500 {}'
: 1687875586:0;fd . -X bat
: 1687875620:0;fd .config.h -X bat
: 1687875627:0;fd config.h -X bat
: 1687875786:0;mkdir bat
: 1687875789:0;cd bat
: 1687875803:0;touch bat.conf
: 1687875976:0;cd .config/dwm
: 1687875987:0;bat config.h
: 1687876114:0;cd ~/.local/state/nvim/swap
: 1687876137:0;rf ./*
: 1687876537:0;git clone https://github.com/greggb/sublime-snazzy themes
: 1687876547:0;cd themes
: 1687876612:0;bat --config-dir
: 1687876631:0;cd "$(bat --config-dir)/themes"
: 1687876643:0;git clone https://github.com/greggb/sublime-snazzy
: 1687876712:0;rf themes
: 1687878156:0;bat port
: 1687879964:0;which ex
: 1687879982:0;which ex | xclip
: 1687880066:0;bat $(which ex) | xclip
: 1687880128:0;bat $(which ex)
: 1687888310:0;batgrep
: 1687888399:0;batman bat
: 1687889767:0;yay -Rns bat-extras
: 1687889782:0;batgrep .
: 1687889810:0;yay -Syu bat-extras
: 1687889869:0;batman ls
: 1687891309:0;./lf
: 1687896478:0;cd **
: 1687937320:0;uname -a
: 1687937973:0;v -u repro.lua
: 1687950922:0;sudo mpv . --shuffle
: 1687950934:0;msh . --shuffle
: 1687957226:0;cd pouch/anime/kimetsu-no-yaiba
: 1687957308:0;sudo chmod -x ./*
: 1687957328:0;sudo chown -R pheon-dev:pheon-dev ../*
: 1687957355:0;sudo chmod +x ./*
: 1687957361:0;cd kimetsu-no-yaiba
: 1687980948:0;echo test | nvim - + 'file.txt'
: 1687984893:0;cd ~/.local/share/nvim/lazy/lf.nvim
: 1687984997:0;rf %home%pheon-dev%.local%share%nvim%lazy%lf.nvim%lua%lf%main.lua.swp
: 1688030820:0;nitro
: 1688034421:0;cd functions
: 1688036775:0;cp ~/dotfiles/zsh/fzf-tab* .
: 1688036782:0;cp -r ~/dotfiles/zsh/fzf-tab* .
: 1688037116:0;man zsh
: 1688037284:0;lsa
: 1688037345:0;history zsh
: 1688038294:0;yay -Syu notify-send
: 1688039262:0;p
: 1688042542:0;pip3 install neovim-remote
: 1688042608:0;nvim --listen /tmp/nvimsocket
: 1688042859:0;pip3 install --user neovim-remote
: 1688042915:0;nvr --remote .zshrc
: 1688043152:0;nvr
: 1688043282:0;~/.local/bin/nvr --remote fzf.zsh
: 1688043329:0;~/.local/bin/nvr --remote alias.zsh
: 1688044185:0;~/.local/bin/nvr --remote colors
: 1688044214:0;export PATH="/home/pheon-dev/.local/bin"\
: 1688044222:0;nvr --remote colors
: 1688044357:0;nvim --remote colors
: 1688044920:0;nvim --server ~/.cache/nvim/server.pipe --remote icons
: 1688045423:0;nvim --server ~/.cache/nvim/server.pipe --remote lfcd.sh
: 1688045469:0;nvim --listen ~/.cache/nvim/server.pipe
: 1688045556:0;nvim --server ~/.cache/nvim/server.pipe --remote .zshrc
: 1688045607:0;nvim --server ~/.cache/nvim/server.pipe --remote init.lua
: 1688045642:0;nvim --server ~/.cache/nvim/server.pipe --remote lua/util.lua
: 1688059443:0;zsh -lxv
: 1688060891:0;cd zsh-al
: 1688060901:0;gh repo clone Naheel-Azawy/cp-p
: 1688061151:0;which cp-p
: 1688061453:0;yay -Syu strace
: 1688061869:0;cp-p rust-web-app-preview ../canvas
: 1688061873:0;l ../canvas
: 1688061978:0;cd zsh-alias/cp-p
: 1688061986:0;sudo make uninstall
: 1688061998:0;cp-p
: 1688065702:0;lf-preview
: 1688065708:0;./lf-preview
: 1688065732:0;./lf-preview ../dwm/wall
: 1688065742:0;./lf-preview ../dwm/wall/5759744.jpg
: 1688065755:0;l ../dwm/wall
: 1688066653:0;glow README.md
: 1688066856:0;glow --help
: 1688066903:0;gw -a
: 1688068640:0;cd lf
: 1688068671:0;cp lf ~/.config/lf
: 1688068680:0;cp lfcd.sh ~/.config/lf
: 1688069129:0;js
: 1688070855:0;which nl
: 1688070860:0;man nl
: 1688070921:0;nl
: 1688070951:0;vs ~/.zshrc
: 1688070978:0;vs ~/.xinitrc
: 1688071088:0;cd ~/.config/zsh
: 1688116640:0;mkdir exported-keys
: 1688116759:0;gpg --output public.pgp --armor --export [email protected]
: 1688116828:0;gpg --output private.pgp --armor --export-secret-key [email protected]
: 1688116913:0;sudo cp -r exported-keys /mnt/usb-b
: 1688117066:0;sudo shutdown -h now
: 1688154913:0;1+1
: 1688154929:0;(1+1)
: 1688160572:0;zellij run -- lf
: 1688160913:0;zellij run --floating -- lf
: 1688160959:0;zr
: 1688161181:0;zellij action start-or-reload-plugin zellij:status-bar
: 1688164419:0;gobi
: 1688164566:0;mv dotfiles .config
: 1688164840:0;touch a
: 1688164874:0;cat a
: 1688164899:0;ls > a
: 1688164924:0;ls | echo > a
: 1688164936:0;ls | xargs echo > a
: 1688164965:0;l | xargs echo > a
: 1688164970:0;lt | xargs echo > a
: 1688164980:0;history > a
: 1688165015:0;l | xargs > a
: 1688165030:0;history | xargs > a
: 1688166464:0;which pass show -c
: 1688166478:0;which $(pass show -c)
: 1688168144:0;gyb .config
: 1688199424:0;cd rust/scene/rust-api-fxs
: 1688200088:0;z vas
: 1688200101:0;../scene/rust-api-fxs
: 1688201579:0;which cn
: 1688201600:0;cn --lib manta-api-logic
: 1688201621:0;cd manta-api-logic
: 1688202135:0;cd rust/canvas
: 1688202150:0;mv manta-* a
: 1688202161:0;mv a manta-api
: 1688202182:0;mv manta-api/.git* .
: 1688202874:0;http GET http://127.0.0.1:8080
: 1688204266:0;z fxs
: 1688204303:0;../../canvas/manta-api
: 1688205738:0;zr cwtc
: 1688205896:0;http POST http://127.0.0.1:8080/send_requests
: 1688207950:0;gh repo clone Pheon-Dev/manta
: 1688207959:0;cd manta
: 1688209579:0;cd rust-api-fxs
: 1688209594:0;cd todo-axum
: 1688209597:0;cwww
: 1688209772:0;http POST http://127.0.0.1:3000/todos title=excalibur notes=few assigned_to=arthur completed=false
: 1688209795:0;http GET http://127.0.0.1:3000/todos
: 1688209895:0;http POST http://127.0.0.1:8080/send_requests amount=100 receiver=john description=lunch
: 1688209913:0;http GET http://127.0.0.1:8080/send_requests
: 1688210594:0;http POST http://127.0.0.1:8080/send-requests amount=100 receiver=john description=lunch
: 1688210613:0;http POST http://127.0.0.1:8080/send-requests amount=100 receiver=jane description=transy
: 1688210683:0;http DELETE http://127.0.0.1:8080/send-requests:1
: 1688210695:0;http DELETE http://127.0.0.1:8080/send-requests/1
: 1688210706:0;http GET http://127.0.0.1:8080/send-requests
: 1688210759:0;http POST http://127.0.0.1:8080/send-requests/0 amount=100 receiver=johnny description=lunch
: 1688210778:0;http PUT http://127.0.0.1:8080/send-requests/0 amount=100 receiver=johnny description=lunch
: 1688210789:0;http PATCH http://127.0.0.1:8080/send-requests/0 amount=100 receiver=johnny description=lunch
: 1688211089:0;http PATCH http://127.0.0.1:8080/send-requests/0 amount=100 receiver=johnny description=transy
: 1688211105:0;http POST http://127.0.0.1:8080/send-requests amount=100 receiver=johnny description=lunch
: 1688211285:0;../hero-manager-axum
: 1688211854:0;ci sqlx-cli
: 1688211957:0;yay -Syu just
: 1688212446:0;yay -Syu docker docker-compose
: 1688212601:0;sudo systemctl status docker
: 1688212665:0;docker run --name postgres-dev -e POSTGRES_PASSWORD=postgres -d -p 5432:5432 postgres
: 1688212672:0;sudo docker run --name postgres-dev -e POSTGRES_PASSWORD=postgres -d -p 5432:5432 postgres
: 1688212735:0;just install-sqlx-cli
: 1688212744:0;just install-sqlx
: 1688212759:0;just start-pg
: 1688212770:0;sudo just start-pg
: 1688213232:0;sudo just start-psql
: 1688213274:0;sudo just start-psql stmt
: 1688213288:0;sudo just run-psql stmt
: 1688213336:0;sudo just get-db-user
: 1688213372:0;just get-deb-user
: 1688213426:0;just create-db
: 1688213440:0;just create-migrations
: 1688213469:0;just describe-table table
: 1688213483:0;just get-db-user
: 1688213516:0;just describe-table
: 1688213533:0;just start-psql
: 1688213641:0;just create-db heroes
: 1688213698:0;just describe-table table heroes
: 1688213751:0;just describe-table capabilities
: 1688213758:0;just describe-table *
: 1688213828:0;just describe-table abilities
: 1688213895:0;dock -i
: 1688214218:0;just describe-table heroes
: 1688214337:0;just
: 1688214348:0;jus
: 1688214375:0;just apply-migrations
: 1688224494:0;just describe-table heroes | xargs bat
: 1688225964:0;dock --stop
: 1688226265:0;which cwtc
: 1688226674:0;http POST http://127.0.0.1:8080/api/rpc method=create_task params={data={title=bbb}}
: 1688227564:0;git checkout ray
: 1688228649:0;z manta
: 1688234311:0;sudo docker exec -it -u postgres pg psql
: 1688241389:0;mkdir old
: 1688241406:0;mv src old
: 1688241414:0;mv examples old
: 1688241421:0;mv sql old
: 1688241449:0;lg old
: 1688241479:0;l old
: 1688241507:0;cp -r ~/rust/scene/rust-web-app-preview/src .
: 1688241514:0;cp -r ~/rust/scene/rust-web-app-preview/sql .
: 1688241520:0;cp -r ~/rust/scene/rust-web-app-preview/examples .
: 1688241554:0;mv target old
: 1688241561:0;cp -r ~/rust/scene/rust-web-app-preview/target .
: 1688241583:0;mv Cargo* old
: 1688241591:0;cp -r ~/rust/scene/rust-web-app-preview/Cargo* .
: 1688241639:0;mv .cargo old
: 1688241646:0;cp -r ~/rust/scene/rust-web-app-preview/.cargo .
: 1688241655:0;cp -r ~/rust/scene/rust-web-app-preview/rustfmt.toml .
: 1688242596:0;cargo-watch -q -c -w examples -x "run --example quick_dev"
: 1688295035:0;man toipe
: 1688295042:0;toipe --help
: 1688295069:0;toipe -n 10
: 1688295166:0;toipe -n 15
: 1688295467:0;rf cp-p
: 1688319150:0;mkdir neovim
: 1688319168:0;https://github.com/Pheon-Dev/lualine.nvim.git
: 1688319182:0;gh repo clone Pheon-Dev/lualine.nvim
: 1688319226:0;passww
: 1688321749:0;z luali
: 1688321865:0;jjzz
: 1688321868:0;z#zz
: 1688328357:0;mv ~/.local/share/nvim/lazy/lualine.nvim/lua/lualine/components/wifi.lua ./lua/lualine/components
: 1688328373:0;mv ~/.local/share/nvim/lazy/lualine.nvim/lua/lualine/components/battery.lua ./lua/lualine/components
: 1688328728:0;../pigeon
: 1688328847:0;cd ~/Documents/neovim/lualine.nvim
: 1688331765:0;mv ~/.local/share/nvim/lazy/lualine.nvim/lua/lualine/components/ram.lua ~/Documents/neovim/lualine.nvim/lua/lualine/components
: 1688333261:0;luacheck lua/lualine/components/wifi.lua
: 1688333269:0;luacheck lua/lualine/components/battery.lua
: 1688333307:0;luacheck lua/lualine/components/ram.lua
: 1688333630:0;nvim --headless -c "PlenaryBustedDirectory tests/plenary/ {options}"
: 1688376226:0;mv lualine.nvim ~/pouch
: 1688376409:0;cd lualine.nvim
: 1688383761:0;ports
: 1688385876:0;http POST http://127.0.0.1:8080/api/logoff completed=true
: 1688385920:0;http POST http://127.0.0.1:8080/api/logoff logoff=true
: 1688386014:0;http POST http://127.0.0.1:8080/manta-ui
: 1688386024:0;http http://127.0.0.1:8080/manta-ui
: 1688386051:0;http POST http://127.0.0.1:8080/api/logoff logoff true
: 1688386174:0;http POST http://127.0.0.1:8080/api/logoff logoff:=true
: 1688386666:0;cwtc
: 1688388748:0;http POST http://127.0.0.1:8080/api/rpc method=create_task params:='{"data": {"amount":"100"}}'
: 1688388786:0;http POST http://127.0.0.1:8080/api/rpc
: 1688388961:0;http POST http://127.0.0.1:8080/api/login username=demo2 pwd=again
: 1688392162:0;cargo-watch -q -c -x "test -- --nocapture"
: 1688392222:0;cargo-watch -q -c -x "test -- --nocapture" --bin manta-api
: 1688392245:0;cargo-watch -q -c -x "test -- --nocapture --bin manta-api"
: 1688392279:0;cargo-watch --bin manta-api -q -c -x "test -- --nocapture"
: 1688392296:0;cargo-watch -q -c -x "test --bin manta-api -- --nocapture"
: 1688392386:0;cr --example quick_dev
: 1688392520:0;ctst
: 1688392559:0;which ctst
: 1688393325:0;cw -q -c -w src/ -x run
: 1688394332:0;cd client
: 1688394338:0;alis vite
: 1688394377:0;yarn create vite
: 1688396743:0;mv client/manta-wallet .
: 1688396747:0;rf client