-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zsh_history
1567 lines (1567 loc) · 53.3 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
: 1583685025:0;vim .zshrc.pre-oh-my-zsh
: 1583685042:0;cp .zshrc.pre-oh-my-zsh .zsh
: 1583685103:0;rm .zsh
: 1583685111:0;mv .zshrc.pre-oh-my-zsh .zshrc
: 1583685137:0;cd myScripts
: 1583685149:0;sh arch_install2.sh
: 1583685575:0;git rm -r --cached ../myStaff
: 1583685592:0;git rm -r -f --cached ../myStaff
: 1583685601:0;ls ~/myStaff
: 1583685610:0;ls ~/myStaff/rime_user_db
: 1583685634:0;gs
: 1583685730:0;gcmsg "rm eclipse, gvim\
"
: 1583685751:0;git commit -a
: 1583685763:0;git commit -a -m "sss"
: 1583720528:0;git status
: 1583720579:0;git checkout master -- myScripts ~/xxx
: 1583720612:0;mkdir ~/xxx
: 1583720615:0;git checkout master -- ../myScripts ~/xxx
: 1583720767:0;git checkout master -- ../myScripts
: 1583720831:0;git pull origin master
: 1583720855:0;git checkout
: 1583724539:0;git checkout master ../myScripts
: 1583725554:0;man ls
: 1583725980:0;z S
: 1583726775:0;yay -S autojump
: 1583726815:0;j ~/myScripts
: 1583726819:0;pwd
: 1583726834:0;j ~/.myconfigs
: 1583726836:0;jS
: 1583726839:0;j S
: 1583726854:0;j myc
: 1583726867:0;j mycon
: 1583726918:0;j .vim
: 1583726926:0;j .vim/
: 1583727463:0;cd ~/.oh-my-zsh
: 1583727656:0;echo $ZSH
: 1583727674:0;vim .oh-my-zsh/oh-my-zsh.sh
: 1583728281:0;yay -Ss zplug
: 1583728713:0;yay -S zplug
: 1583729557:0;z /home/damon/.oh-my-zsh
: 1583729570:0;cd autojump
: 1583729589:0;ls .git
: 1583729637:0;cd .oh-my-zsh
: 1583729641:0;ls custom
: 1583729663:0;z cus
: 1583729667:0;z custom
: 1583729688:0;cd .oh-my-zsh/custom/
: 1583729693:0;cd plugins
: 1583729707:0;cd zsh-syntax-highlighting
: 1583729764:0;git clone https://github.com/skywind3000/z.lua $ZSH_CUSTOM/plugins/z.lua
: 1583729813:0;cd ~/.vim/autoload/damonvim
: 1583729822:0;z da
: 1583729832:0;cd ~/.vim
: 1583729839:0;cd ~/.vim/autoload
: 1583729941:0;z -l vim
: 1583730005:0;z -I vim
: 1583730045:0;zf
: 1583730054:0;z -I
: 1583730160:0;z au vim
: 1583731654:0;h
: 1583731859:0;gau
: 1583731861:0;gsst
: 1583732387:0;vim ../myScripts/arch.sh
: 1583732687:0;cd ~/myStaff
: 1583732704:0;mkdir wallpaper
: 1583732723:0;sudo mount /dev/sdb1 /mnt
: 1583732753:0;cp /mnt/currentConfig/1.jpg ~/myStaff/wallpaper
: 1583732786:0;git add -f ~/myStaff/wallpaper
: 1583732807:0;gcam "add wallpaper"
: 1583732880:0;ggp
: 1583734077:0;z
: 1583761514:0;gcam "set fzf's theme to gruvbox"
: 1583761560:0;git fetch origin master
: 1583761726:0;git pull
: 1583761798:0;git config --global core.editor vim
: 1583761848:0;gcam "fzf theme gruvbox"
: 1583762566:0;picom
: 1583763897:0;bspc desktop last --focus
: 1583764746:0;{ pgrep polybar && { killall polybar ; bspc config top_padding 0 } } || { launch_polybar ; bspc config top_padding 24 }
: 1583764782:0;polybar
: 1583764795:0;polybar -r
: 1583767498:0;sdfsdf
: 1583772412:0;cheat ls
: 1583772750:0;mkdir -p ~/.config/cheat && cheat --init > ~/.config/cheat/conf.yml
: 1583772757:0;cd ~/.config/cheat
: 1583772761:0;vim conf.yml
: 1583772967:0;ls .cheat
: 1583772979:0;ls cheat
: 1583773120:0;yay -Ql cheat
: 1583773457:0;vim ~/.config/cheat/conf.yml
: 1583773553:0;mkdir -p ~/.config/cheat/personal_sheets
: 1583773563:0;cd ~/.config/cheat/ls
: 1583773565:0;cd ~/.config/cheat/
: 1583773568:0;cd personal_sheets
: 1583773773:0;cheat -e yay
: 1583773801:0;cheat yay
: 1583773894:0;gcam 'init cheat'
: 1583774087:0;cheat -d
: 1583774301:0;cheat -s ssh
: 1583801766:0;cheat bspwm
: 1583801773:0;cheat -e bspwm
: 1583805242:0;z vim
: 1583806945:0;cheat -l personal_cheatsheets
: 1583806953:0;cheat -l personal
: 1583806958:0;cheat -l
: 1583806964:0;cheat cheat
: 1583806982:0;cheat -e cheat
: 1583806999:0;cheat -l -p personal
: 1583807049:0;git add -f ../.config/cheat
: 1583807078:0;gcam 'add cheat for bspwm'
: 1583808332:0;fc-list | grep 'awesome'
: 1583808345:0;fc-list | grep 'devicon'
: 1583811349:0;fc-list | grep 'material'
: 1583811364:0;fc-list | grep -i 'material'
: 1583811568:0;fc-list | grep -i 'awesome'
: 1583811927:0;fc-list | grep -i 'mplus'
: 1583812271:0;vim ~/.config/ranger/
: 1583812421:0;gcam 'urxvt font'
: 1583812470:0;yay -Rs bspwm
: 1583812497:0;rm -r bspwm
: 1583812506:0;rm -rf bspwm
: 1583812740:0;vim .xinirc
: 1583813173:0;git reset --hard head
: 1583813180:0;git reset --hard master
: 1583813188:0;ls ~/.config/bspwm
: 1583813223:0;sudo systemctl enable lightdm.service
: 1583813318:0;rm .xinirc
: 1583813399:0;xinit
: 1583813632:0;z Sc
: 1583813639:0;cd ~/myScripts
: 1583813648:0;touch test.sh
: 1583813654:0;rm test.sh
: 1583813658:0;cp arch.sh test.sh
: 1583813828:0;z conf
: 1583813849:0;git add -f ../myScripts/test.sh
: 1583813855:0;gcam 'add test.sh'
: 1583816146:0;star
: 1583816272:0;sudo systemctl disable lightdm.service
: 1583816284:0;sudo systemctl stop lightdm.service
: 1583839866:0;yay -S flameshot
: 1583840614:0;yay -S gnome-terminal
: 1583842882:0;fc-list | grep -i 'nerd font'
: 1583842898:0;fc-list | grep -i 'mplus nerd font'
: 1583845348:0;yay -S st-luke-git
: 1583845456:0;ls 0-al
: 1583845573:0;yay -Ql st-luke-git
: 1583845616:0;ls /usr/share/doc/st-luke-git
: 1583845626:0;ls /usr/share
: 1583857560:0;vim events.o
: 1583858968:0;fc-list | grep -i 'Hack Nerd'
: 1583859186:0;fc-list | grep -i 'RobotoMono'
: 1583859715:0;fc-list | grep -i 'Meslo*Nerd'
: 1583860652:0;fc-list | fzf
: 1583863145:0;ping mirrors.163.com
: 1583863160:0;ping mirrors .sjtug.com
: 1583863166:0;ping mirrors.sjtug.com
: 1583863293:0;yay -S reflector
: 1583863547:0;sudo reflector --verbose -l 5 --sort rate --save /etc/pacman.d/mirrorlist
: 1583888163:0;sudo pacman -Syyu
: 1583888279:0;cd .myconfig
: 1583888309:0;gcam 'fix gylph fot urxvt'
: 1583888331:0;yay -S gedit
: 1583888949:0;cd ~/git4install
: 1583889145:0;cd .oh-my-zsh/custom/themes
: 1583889166:0;cd themes
: 1583889170:0;vim damon.zsh-theme
: 1583891712:0;yay -S nautilus
: 1583894746:0;set
: 1583897606:0;yay -S xterm
: 1583897787:0;gnome-terminal
: 1583897976:0;dbus-launch gnome-terminal
: 1583904208:0;vijm
: 1583904546:0;git clone https://github.com/LukeSmithxyz/st.git
: 1583905346:0;mkdir .config/alacritty
: 1583905367:0;cp /usr/share/doc/alacritty/example/alacritty.yml ~/.config/alacritty
: 1583905383:0;vim ~/.config/alacritty
: 1583905567:0;fc-list : family style
: 1583905589:0;fc-list : family style | fzf
: 1583906937:0;fc-list | fzf Roboto
: 1583906948:0;fc-list | grep -i 'Meslo'
: 1583918267:0;sudo systemctl restart NetworkManager
: 1583920320:0;sudo vim /etc/pacman.d/mirrorlist
: 1583920435:0;yay -Sy ttf-share-gf
: 1583921112:0;vim config.
: 1583922769:0;chmod +w config.h
: 1583922774:0;sudo chmod +w config.h
: 1583922860:0;sudo chmod +rwx config.h
: 1583922926:0;cheat chmod
: 1583922978:0;sudo chmod a+w config.h
: 1583923848:0;curl https://st.suckless.org/patches/font2/st-font2-20190416-ba72400.diff
: 1583923868:0;yay -Sy wget
: 1583923980:0;vim x.c
: 1583924172:0;cd
: 1583924179:0;cd git4install/st
: 1583924228:0;sudo make uninstall
: 1583924233:0;rm -rf st
: 1583924237:0;git clone https://git.suckless.org/st
: 1583924277:0;rm config.def.h
: 1583924283:0;wget https://st.suckless.org/patches/font2/st-font2-20190416-ba72400.diff
: 1583924328:0;cp st-font2-20190416-ba72400.diff st
: 1583924333:0;patch < st-font2-20190416-ba72400.diff
: 1583925113:0;z ala
: 1583925470:0;cheat -e fonts
: 1583925483:0;cheat tar
: 1583925491:0;cheat -e tar
: 1583929651:0;cheat font
: 1583929671:0;cheat fonts
: 1583929843:0;ct
: 1583929976:0;vim ~/.config/alacritty/alacritty.yml
: 1583932602:0;st -name
: 1583934216:0;ls i3
: 1583934223:0;ls \
ls \
ls
: 1583934227:0;ls .config/i3
: 1583935016:0;cd myStaff/wallpaper
: 1583939672:0;yay -S picom
: 1583939758:0;glxinfo
: 1583940949:0;cd git4install/st/st
: 1583940952:0;cd git4install/st/
: 1583940967:0;wget https://st.suckless.org/patches/boxdraw/st-boxdraw_v2-0.8.2.diff
: 1583941011:0;patch -p1 < st-boxdraw_v2-0.8.2.diff
: 1583941501:0;vim config.h
: 1583944001:0;alacritty -h
: 1583944036:0;alacritty
: 1583944498:0;alacritty -vv
: 1583944565:0;alacritty -version
: 1583944577:0;alacritty --version
: 1583944638:0;alacritty -v
: 1583947486:0;ranger --help
: 1583947802:0;vim rc.conf
: 1583947937:0;yay -S w3m
: 1583949836:0;git clone https://github.com/alexanderjeurissen/ranger_devicons ~/.config/ranger/plugins/ranger_devicons
: 1583949942:0;xrdb -load .Xresources
: 1583950409:0;locale
: 1583951562:0;STARTX
: 1583951573:0;SUDO REBOOT
: 1583952576:0;sudo mount /dev/sr0 /mnt
: 1583952597:0;./VBox
: 1583952606:0;./VBoxLinuxAdditions.run
: 1583952614:0;sudo ./VBoxLinuxAdditions.run
: 1583954000:0;picom --experimental-backends --backend glx
: 1583977556:0;i3-msg exit
: 1583977756:0;bspwm
: 1583977791:0;cheat rg
: 1583977868:0;c tar
: 1583977886:0;ce picom
: 1583978181:0;vim .config/i3/config
: 1583978790:0;vim ~/.config/fcitx/rime/default.custom.yaml
: 1583980157:0;cd skin/gruvbox/
: 1583982322:0;urxvt --help
: 1583982442:0;pkill urxvt
: 1583982506:0;z gru
: 1583982514:0;vim fcitx_skin.conf
: 1583983313:0;z poly
: 1583983327:0;vim ~/.config/polybar/colors.ini
: 1583984048:0;git add -f ../.config/fcitx/skin/gruvbox
: 1583984083:0;gcam 'customize fcitx gruvbox skin'
: 1583984091:0;xmodmap .Xmodmap
: 1583986550:0;vim ~/.config/i3/config
: 1583989636:0;gcam 'remove i3bar'
: 1583990745:0;ls personal_sheets
: 1583990868:0;git add -f ../.config/cheat/personal_sheets
: 1583990981:0;git add -f ../.zsh_history
: 1583991058:0;gcam 'Add cheatshetts and history'
: 1583991678:0;c font
: 1583991682:0;c fonts
: 1583991995:0;gcam 'changes for sh'
: 1583996270:0;vim ../myScripts/arch_install2.sh
: 1583996287:0;vim ~/myScripts/arch_install2.sh
: 1583996986:0;cd xxx
: 1583997008:0;curl https://raw.githubusercontent.com/blurm/dotfiles/master/myScripts/arch.sh
: 1583997037:0;curl -fsSL https://raw.githubusercontent.com/blurm/dotfiles/master/myScripts/arch.sh
: 1583997067:0;wget https://raw.githubusercontent.com/blurm/dotfiles/master/myScripts/arch.sh
: 1583997079:0;vim arch.lsh
: 1583997083:0;vim arch.sh
: 1583997229:0;sh -c "$(https://raw.githubusercontent.com/blurm/dotfiles/master/myScripts/arch.sh)"
: 1583997874:0;z myS
: 1583997878:0;z cri
: 1583997902:0;mv arch_install2.sh archApps.sh
: 1583999483:0;cd .myconfigs
: 1584000241:0;vim archApps.sh
: 1584000341:0;fc-list | grep -i 'Awesome'
: 1584005769:0;z con
: 1584005815:0;git add -f ../myScripts/archApps.sh
: 1584011322:0;gcam 'disable lightdm service'
: 1584012429:0;gcam 'Add archlinuxcn'
: 1584012777:0;sh -c "$(curl -fsSL https://raw.githubusercontent.com/blurm/dotfiles/master/myScripts/arch.sh)"
: 1584016541:0;gcam 'Add damonvim'
: 1584084248:0;cheat picom
: 1584085631:0;sudo vim /etc/hostname
: 1584085714:0;sudo systemctl enable lightdm
: 1584085966:0;z rofi
: 1584085977:0;cd .config/rofi/
: 1584085992:0;mv rofi rofi_bak
: 1584086007:0;mv rofi_bak rofi
: 1584086256:0;yay -Rs rofi
: 1584086279:0;yay -Sy rofi
: 1584086358:0;yay -Rs picom
: 1584087030:0;sudo lxappearance
: 1584087169:0;sudo chromium
: 1584087178:0;chromium
: 1584087547:0;picom --experimental-backends --backend glx --blur-method dual_kawase --blur-strength 10
: 1584092869:0;top
: 1584096938:0;lspci | grep -i vg
: 1584096940:0;lspci | grep -i vga
: 1584096993:0;c hardware
: 1584097001:0;ce hardware
: 1584099821:0;myc
: 1584099829:0;cd ~/.myconfig
: 1584099833:0;cd ~/.myconfigs
: 1584100945:0;sudo /etc/lightdm/lightdm-webkit2-greeter.conf
: 1584101026:0;git clone https://github.com/paysonwallach/aqua-lightdm-webkit-theme /usr/share/lightdm-webkit/themes/aqua
: 1584101039:0;sudo git clone https://github.com/paysonwallach/aqua-lightdm-webkit-theme /usr/share/lightdm-webkit/themes/aqua
: 1584101399:0;vim .xinitrc
: 1584104875:0;ls /usr/share/lightdm-webkit/themes/
: 1584104926:0;ls /usr/share/lightdm-webkit/themes/lightdm-webkit-theme-aether
: 1584113710:0;sudo vim /etc/lightdm/lightdm-webkit2-greeter.conf
: 1584114667:0;cd /usr/share/pixmaps
: 1584114780:0;z staff
: 1584114788:0;cd ~/myStaff/wallpaper
: 1584114796:0;mv item.png face.png
: 1584114871:0;ls /usr/share/backgrounds
: 1584119077:0;cd /etc/lightdm
: 1584119100:0;cd lightdm-webkit-theme-aether
: 1584119117:0;cd src/css
: 1584149913:0;cd /var/lib/AccountsService/users
: 1584149917:0;sudo cd /var/lib/AccountsService/users
: 1584149958:0;ls /var/lib/AccountsService/users
: 1584149970:0;sudo ls /var/lib/AccountsService/users
: 1584149976:0;sudo ls /var/lib/AccountsService/users/damon
: 1584150217:0;z /home/damon/myStaff/wallpaper
: 1584150230:0;cp face.png ~/.face
: 1584150236:0;ls -al ~
: 1584152818:0;cd css
: 1584152829:0;sudo vim style.css
: 1584153017:0;cd /usr/share/lightdm-webkit/themes/lightdm-webkit-theme-aether
: 1584153068:0;cd src
: 1584153071:0;ls img
: 1584153076:0;ls font
: 1584153084:0;ls sass
: 1584153090:0;ls test
: 1584153108:0;ls img/wallpapers
: 1584153448:0;sudo cp ~/myStaff/wallpaper/damon.png /var/lib/AccountsService/icons
: 1584153470:0;sudo cp ~/myStaff/wallpaper/facE.PNG /Var/lib/AccountsService/icons/damon.png
: 1584154068:0;vim .zsh
: 1584156618:0;man zsh
: 1584156823:0;sudo vim /var/lib/AccountsService/users/damon
: 1584156968:0;sudo cp ~/myStaff/wallpaper/face.png /Var/lib/AccountsService/icons/damon.png
: 1584156989:0;sudo cp ~/myStaff/wallpaper/face.png /Var/lib/AccountsService/icons/
: 1584157011:0;sudo cp ~/myStaff/wallpaper/face.png /var/lib/AccountsService/icons/damon.png
: 1584157015:0;ls /var/lib/AccountsService/icons
: 1584157110:0;cd /var/lib/AccountsService/icons
: 1584157142:0;chmod 644 damon.png
: 1584157146:0;sudo chmod 644 damon.png
: 1584159240:0;z mc
: 1584159265:0;git add -f ../.config/fcitx/rime/luna_pinyin.custom.yaml
: 1584161217:0;mkdir mydata
: 1584161232:0;sudo mount /dev/sdd1 ~/mydata
: 1584162349:0;sudo usermod -aG vboxusers damon
: 1584162744:0;sudo virtualBox
: 1584162759:0;sudo VirtualBox
: 1584166599:0;c picom
: 1584166603:0;c -e picom
: 1584167172:0;sudo mount /dev/sdc4 /mnt
: 1584167181:0;sudo ls /mnt
: 1584167218:0;sudo ranger
: 1584167293:0;picom --experimental-backends --backend glx --blur-method dual_kawase --blur-strength 10 &
: 1584167305:0;sude cd /mnt
: 1584167310:0;sudo cd /mnt
: 1584167327:0;cd /
: 1584167355:0;umount /mnt
: 1584167358:0;sudo umount /mnt
: 1584167364:0;sudo mount /dev/sdc4 /mnt2
: 1584167368:0;ls /mnt2
: 1584167684:0;umount /mnt2
: 1584167688:0;sudo umount /mnt2
: 1584167695:0;cd home/damon
: 1584167702:0;mkdir mnt
: 1584167722:0;sudo mount /dev/sdc4 ~/mnt
: 1584167939:0;sudo chmod +R mnt
: 1584168070:0;sudo chmod a+r mnt
: 1584168072:0;ls mnt
: 1584168175:0;chmod -R 777 mnt/
: 1584168180:0;sudo chmod -R 777 mnt/
: 1584168316:0;cd ~/mnt
: 1584168519:0;cd mnt/Users/damon/VirtualBox\ VMs
: 1584168531:0;cp Arch\ 婯漬 ~/VirtualBoxVMs
: 1584168539:0;cp -r Arch\ 婯漬 ~/VirtualBoxVMs
: 1584168544:0;sudo cp -r Arch\ 婯漬 ~/VirtualBoxVMs
: 1584168590:0;ls VirtualBoxVMs
: 1584168682:0;cd mnt/
: 1584168703:0;cd VirtualBoxVMs
: 1584168712:0;cd Arch\ 婯漬
: 1584168777:0;sudo chmod -R 755 Arch\ 婯漬
: 1584168789:0;ls Arch\ 婯漬 -al
: 1584169109:0;chmod -R u+w Arch\ 婯漬
: 1584169117:0;sudo chmod -R u+w Arch\ 婯漬
: 1584169319:0;user
: 1584169321:0;users
: 1584169327:0;c users
: 1584169355:0;sudo chown -R damon Arch\ 婯漬
: 1584169392:0;sudo chown -R damon:users Arch\ 婯漬
: 1584169396:0;ls -al Arch\ 婯漬
: 1584169413:0;c chown
: 1584171076:0;sudo vim /etc/lightdm/lightdm.conf
: 1584171335:0;gcam 'not apply opacity to virtualbox'
: 1584171572:0;man lsblk
: 1584171593:0;c -e lsblk
: 1584171639:0;cd .config/cheat/
: 1584171650:0;cd ~/.config/cheat/personal_sheets
: 1584171709:0;git add -f add ~/.config/cheat/personal_sheets
: 1584171721:0;git add -f ~/.config/cheat/personal_sheets
: 1584171734:0;gcam 'add cheat files'
: 1584172055:0;sudo vim /etc/fstab
: 1584172129:0;ls my
: 1584172135:0;ls mydata
: 1584172947:0;modprobe vboxdrv
: 1584186887:0;bspc node -f @parent && bspc node --ratio 0.33
: 1584191286:0;bspc node -f @parent && bspc node --ratio 0.65
: 1584191299:0;bspc node -f @parent && bspc node --ratio 0.60
: 1584191604:0;bspc list_monitors
: 1584193044:0;startx
: 1584193066:0;sudo systemctl start lightdm
: 1584193234:0;bspc quit
: 1584196217:0;git clone https://github.com/dylanaraps/bspwm.git
: 1584196277:0;c wget
: 1584196355:0;wget -P ~/git4install/ https://github.com/dylanaraps/bspwm/commit/e8d8f924d7902a6bdc06b515bd43424f8b889474.patch
: 1584196509:0;mv bspwm bspwm_rc
: 1584196566:0;git clone https://github.com/baskerville/bspwm.git
: 1584196584:0;mv e8d8f924d7902a6bdc06b515bd43424f8b889474.patch bspwm
: 1584196587:0;ls bspwm
: 1584196682:0;cd bspwm
: 1584196693:0;git apply --check e8d8f924d7902a6bdc06b515bd43424f8b889474.patch
: 1584196726:0;git apply e8d8f924d7902a6bdc06b515bd43424f8b889474.patch
: 1584196746:0;make
: 1584196753:0;sudo make install
: 1584198400:0;c git
: 1584200227:0;xorg
: 1584228372:0;z /home/damon/git4install/bspwm
: 1584228387:0;cd ~/.config/bspwm
: 1584228398:0;mkdir scripts
: 1584228614:0;chmod +x dropdown.sh
: 1584228629:0;vim dropdown.sh
: 1584228752:0;sh dropdown.sh "urxvt -c dropdown" dropdown" 300 300 300 300
: 1584228921:0;sh dropdown.sh "urxvt -c dropdown" dropdown 300 300 300 300
: 1584231822:0;urxvt -class sp
: 1584231832:0;urxvt -c 'sc'
: 1584231893:0;urxvt -title 'ss'
: 1584231900:0;urxvt -title 'ss' -name 'ss'
: 1584231948:0;urxvt -title 'ss' -name 'ss' & bspc rule -a ss sticky=on state=floating hidden=off
: 1584232360:0;xdotool search --name "Chromium"
: 1584232385:0;xdotool getwindowname 23068673
: 1584232402:0;xdotool search --name "urxvt"
: 1584232474:0;xdotool windowfocus 20971521
: 1584232493:0;xdotool windowfocus 23068672
: 1584232583:0;xdotool key alt+tab
: 1584232588:0;xdotool key alt+Tab
: 1584235718:0;mv dropdown.sh scripts
: 1584235795:0;sudo chmod +x test.sh
: 1584235839:0;cd ~/.config/bspwm/bspwmrc
: 1584235844:0;cd ~/.config/bspwm/scripts
: 1584236322:0;vim .config/bspwm/scripts/test.sh
: 1584236372:0;z bsp
: 1584236378:0;z con bsp
: 1584236734:0;bspc rule -a\* -o state=floating && urxvt
: 1584236747:0;bspc rule -a \* -o state=floating && urxvt
: 1584240653:0;bspc query -W
: 1584240679:0;bspc query -D -d one
: 1584240687:0;bspc query -D -d 'one'
: 1584240992:0;fcitx-configtool
: 1584241285:0;bspc query -N -n .floating
: 1584242236:0;xdotool search --class snatchpad
: 1584242245:0;xdotool search --class 'snatchpad'
: 1584244650:0;rg bspwmrc --files --no-ignore --hidden --follow --glob chrome}
: 1584244670:0;rg bspwmrc --files --no-ignore --hidden --follow --glob
: 1584244677:0;rg bspwmrc --files --no-ignore --hidden --follow
: 1584244696:0;rg 'bspwmrc' --files --no-ignore
: 1584246526:0;z config bsw
: 1584246528:0;z config bsp
: 1584246883:0;z scripts
: 1584247604:0;sh scripts/test.sh
: 1584252191:0;cp scripts/test.sh .
: 1584252232:0;cp test.sh ../sxhkd
: 1584252246:0;cd ../sxhkd
: 1584254607:0;z /home/damon/.config/sxhkd
: 1584254627:0;mv test.sh test
: 1584254723:0;exec ~/.config/sxhkd/test
: 1584255382:0;xdotool -h
: 1584255417:0;xdotool windowclose 25165830
: 1584255722:0;bspc node "10485766" --flag hidden -f
: 1584256479:0;xdotool search --class scratchterm
: 1584256800:0;mv test scrachpadu
: 1584256807:0;cp scrachpadu scrachpadi
: 1584257055:0;mv scrachpadi scratchpadi
: 1584257066:0;mv scrachpadu scratchpadu
: 1584257274:0;git add -f ../.config/sxhkd/
: 1584257296:0;git diff ../.Xresources
: 1584257316:0;gcam 'Add scratchpad for bspwm'
: 1584257396:0;z sx
: 1584257403:0;vim scratchpadi
: 1584257677:0;gcam 'set size for scratchpad'
: 1584258081:0;yay -S neofetch
: 1584259021:0;vim ~/.config/picom/picom.conf
: 1584259119:0;picom &
: 1584262867:0;gcam 'changes for scratchpad'
: 1584271112:0;c -e st
: 1584272223:0;neofetch
: 1584280012:0;xrdb -load ~/.Xresources
: 1584286308:0;cd ~/git4install/st
: 1584287118:0;man st
: 1584315087:0;c -e vim surround
: 1584315754:0;gcam 'add cheatsheets for vim'
: 1584319888:0;git clone https://github.com/blurm/st.git
: 1584319896:0;vim config.mk
: 1584319903:0;sudo make clean install
: 1584319906:0;st
: 1584326652:0;version
: 1584330174:0;git clone https://github.com/sjl/t.git
: 1584330238:0;cd myStaff
: 1584330244:0;mkdir tasks
: 1584330301:0;t test twoo
: 1584330390:0;t 7
: 1584330429:0;t git add myStaff/tasks
: 1584330461:0;tf 90
: 1584335942:0;this is st
: 1584336097:0;t install lsd for ls icon
: 1584336129:0;t powerline10k or spaceline?
: 1584336173:0;t add default layout for bspwm (chromium autostart)
: 1584336186:0;t add default layout for bspwm chromium autostart
: 1584336232:0;git add -f ../myStaff/tasks/
: 1584336274:0;t Add t install to archapp.sh
: 1584336414:0;tf 1
: 1584336737:0;lsd -al
: 1584336825:0;lt
: 1584338172:0;source .zshrc
: 1584338214:0;l s-al
: 1584338345:0;L
: 1584338373:0;alias
: 1584338667:0;ls a
: 1584338669:0;ls -a
: 1584339855:0;lsd
: 1584342208:0;t add thermal module on polybar
: 1584357235:0;git diff ../.zshrc
: 1584357255:0;gcam 'changes'
: 1584359629:0;l
: 1584359657:0;unrar -e 11.zip
: 1584359686:0;unrar e 11.zip
: 1584360475:0;ziptool -h
: 1584360774:0;unzip 11.zip
: 1584360945:0;git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
: 1584360961:0;cp .p10k.zsh ~
: 1584360966:0;ls ~
: 1584361338:0;vim .p10k.zsh
: 1584361561:0;git add -f ../.p10k.zsh
: 1584361587:0;gcam 'Add powerlevel10k'
: 1584362331:0;$ for i in /sys/class/thermal/thermal_zone*; do echo "$i: $(<$i/type)"; done
: 1584362804:0;vim ~/.Xresources
: 1584364005:0;tf 3
: 1584364042:0;t temperature module on polybar is not aligned
: 1584364151:0;ip addr
: 1584364211:0;ip link
: 1584368091:0;la
: 1584368358:0;chromium -c
: 1584368387:0;chromium -c ccc
: 1584368446:0;chromium -h
: 1584368452:0;chromium --help
: 1584368874:0;chromium --class 'xxx' --name 'ccc'
: 1584369505:0;chromium --class test-1 --new-window
: 1584369764:0;cd git4install
: 1584370184:0;z bspwm
: 1584370189:0;sh test.sh
: 1584375984:0;vim ~/.config/sxhkd/scratchpadu
: 1584401576:0;todoist
: 1584401592:0;todoist sync
: 1584401720:0;todoist l
: 1584401826:0;todoist --color --csv l
: 1584401836:0;todoist --color l
: 1584402084:0;td
: 1584402121:0;c -e todoist
: 1584402161:0;td c 3575373533
: 1584402213:0;td l
: 1584402248:0;td c 35788979046
: 1584402448:0;cat .Xresources
: 1584402463:0;cat .xinitrc
: 1584402492:0;cat .xprofile
: 1584402567:0;pygmentize
: 1584402631:0;pygmentize .Xresources
: 1584402649:0;cd mydata/mydata/git
: 1584402659:0;cd geeknote
: 1584402675:0;cat setup.py
: 1584402683:0;pygmentize setup.py
: 1584403047:0;vim git4install/st/config.h
: 1584404071:0;bspc node -c
: 1584404128:0;bspc node -f oldest
: 1584404197:0;bspc node -f older
: 1584404367:0;bspc node -f brother
: 1584404970:0;bspc node parent -r 0.2
: 1584404988:0;bspc node focused.parent -r 0.2
: 1584405014:0;bspc node @parent -r 0.2
: 1584405198:0;bspc node -f biggest
: 1584405202:0;bspc node -f @brother
: 1584405230:0;bspc node -f prev
: 1584405608:0;bspc node -f north
: 1584405626:0;bspc node -c east
: 1584405644:0;bspc node -f east
: 1584405660:0;bspc node -f east -c
: 1584405774:0;bspc node -f last
: 1584405864:0;bspc node -f smallest
: 1584405890:0;bspc node smallest -c
: 1584405997:0;bspc node -f @1
: 1584406014:0;bspc node -f @first
: 1584406023:0;bspc node -f first
: 1584406037:0;bspc node @first -c
: 1584411653:0;bspc node @brother/first -c
: 1584411690:0;first
: 1584411704:0;bspc node @brother/2 -c
: 1584411725:0;bspc node @brother -t floating
: 1584411743:0;bspc node @brother -t tiled
: 1584411956:0;bspc node @brother -g hidden=on
: 1584411958:0;bspc node @brother -g hidden=off
: 1584413675:0;bspc query -N @brother
: 1584413704:0;bspc query -N focused@brother
: 1584413773:0;bspc query -D focused
: 1584413914:0;bspc query -M --names
: 1584413920:0;bspc query -D --names
: 1584413939:0;bspc query -D focused --names
: 1584413948:0;bspc query -D .focused --names
: 1584413969:0;bspc query focused -D --names
: 1584413989:0;bspc query -D -d focused --names
: 1584414020:0;bspc query -N -n focused --names
: 1584414042:0;bspc query -N -n
: 1584414237:0;bspc query -N .hidden
: 1584414245:0;bspc query -N
: 1584414337:0;bspc query -N node .hidden
: 1584414361:0;bspc query -N focused.hidden
: 1584414365:0;bspc query -N focused
: 1584414493:0;bspc query -N any.hidden
: 1584414766:0;bspc destop -f next
: 1584414776:0;bspc desktop -f next
: 1584414880:0;bspc query -N last
: 1584414886:0;bspc query -N -n last
: 1584414891:0;bspc query -N -n focused
: 1584414920:0;bspc query -N -n any hidden
: 1584414926:0;bspc query -N -n any .hidden
: 1584414931:0;bspc query -N -n any.hidden
: 1584414977:0;bspc node '0x00E0005' -c
: 1584415444:0;bspc query -N -n any
: 1584415449:0;bspc query -N any
: 1584415455:0;bspc query -N any.focused
: 1584415481:0;bspc query -N any.
: 1584415547:0;bspc node any.hidden hidden=off
: 1584415579:0;bspc node any.hidden --flag hidden=off
: 1584415640:0;c -e bspwm
: 1584419986:0;bspc rule -l
: 1584421024:0;bspc query -D -d
: 1584421030:0;bspc query -D -d --names
: 1584422276:0;t add weather module to polybar
: 1584424102:0;t buy milks
: 1584429651:0;lxappearance
: 1584432362:0;git clone https://github.com/polybar/polybar-scripts.git
: 1584433327:0;cd polybar-scripts/
: 1584433341:0;cd openweathermap-fullfeatured
: 1584433396:0;t vim駬觪媨è¥å¥¨æ¶§ä»¶è·¯å¾¤
: 1584433967:0;yay -S jq
: 1584434003:0;sh git4install/polybar-scripts/polybar-scripts/openweathermap-forecast/openweathermap-forecast.sh
: 1584434428:0;killall polybar
: 1584435337:0;fc-list | grep -i 'eather'
: 1584435744:0;sh git4install/polybar-scripts/polybar-scripts/openweathermap-fullfeatured/openweathermap-fullfeatured.sh
: 1584436052:0;vim .config/rofi/config.rasi
: 1584436506:0;man rofi
: 1584436606:0;rofi -h
: 1584436649:0;rofi -show keys
: 1584437350:0;vim git4install/polybar-scripts/polybar-scripts/openweathermap-simple/openweathermap-simple.sh
: 1584437399:0;vim ~/.config/polybar/config.ini
: 1584437672:0;cd git4install/polybar-scripts/polybar-scripts/pulseaudio-simple/
: 1584437709:0;-
: 1584437721:0;cd git4install/polybar-scripts/polybar-scripts/openweathermap-simple/
: 1584437733:0;chmod +x openweathermap-simple.sh
: 1584437906:0;sh git4install/polybar-scripts/polybar-scripts/openweathermap-simple/openweathermap-simple.sh
: 1584437915:0;sh openweathermap-simple.sh
: 1584438025:0;chmod +x ~/git4install/polybar-scripts/polybar-scripts/openweathermap-fullfeatured/openweathermap-fullfeatured.sh
: 1584439147:0;sh ~/git4install/polybar-scripts/polybar-scripts/openweathermap-fullfeatured/openweathermap-fullfeatured.sh
: 1584442985:0;z open
: 1584443021:0;cp openweathermap-* ~/.config/polybar/scripts
: 1584443027:0;cp -r openweathermap-* ~/.config/polybar/scripts
: 1584443466:0;z polybar
: 1584443475:0;cd ~/.config/polybar/scripts
: 1584443485:0;cd openweathermap-forecast
: 1584443493:0;chmod +x openweathermap-forecast.sh
: 1584443498:0;cd ../openweathermap-detailed
: 1584443503:0;chmod +x openweathermap-detailed.sh
: 1584443714:0;sh ~/.config/polybar/scripts/openweathermap-detailed/openweathermap-detailed.sh
: 1584445087:0;tf 7
: 1584445130:0;git add -f ../.config/polybar/
: 1584445176:0;gcam 'Add weather module for polybar'
: 1584445417:0;bspc rule -a crx_cdonnmffkdaoajfknoeeecmchibpmkmg state=floating center=on
: 1584445472:0;c bspwm
: 1584445618:0;bspc rule -a st-256color state=floating
: 1584445633:0;bspc rule -a st-256color state=tiled
: 1584445666:0;bspc rule -a chromium state=floating
: 1584445674:0;bspc rule -a Chromium state=floating
: 1584445705:0;bspc rule -a Chromium state=tiled
: 1584445716:0;bspc rule -a crx_cdonnmffkdaoajfknoeeecmchibpmkmg state=floating
: 1584445756:0;bspc rule -a "crx_cdonnmffkdaoajfknoeeecmchibpmkmg" state=floating
: 1584445848:0;man bspwm
: 1584446185:0;bspc rule -a crx_cdonnmffkdaoajfknoeeecmchibpmkmg desktop='^3'
: 1584450140:0;bspc rule -a Chromium:crx_cdonnmffkdaoajfknoeeecmchibpmkmg state=floating
: 1584456297:0;z myconf
: 1584456328:0;git diff ../.config/bspwm/bspwmrc
: 1584509160:0;vim ~/.config/sxhkd/sxhkdrc
: 1584509675:0;xprop
: 1584509905:0;xpro
: 1584523848:0;rg 'state=name'
: 1584523951:0;rg 'state=name' ./ --files
: 1584523960:0;rg 'state=name' ./ --files --hidden
: 1584523985:0;rg 'color.ini' ./ --files --hidden
: 1584525412:0;rg state ~/.config
: 1584525432:0;rg state=floating .config
: 1584525921:0;ls -al
: 1584525930:0;ls .LfCache
: 1584525946:0;rm -r .LfCache
: 1584526225:0;rg lightdm-webkit2-greeter /
: 1584526289:0;sudo rg lightdm-webkit2-greeter /etc/
: 1584526398:0;sudo rg "lightdm-webkit2-greeter" /etc/
: 1584526632:0;c vim-surrounder
: 1584526645:0;ls .config/cheat/personal_sheets/
: 1584526698:0;c vim_surround
: 1584526834:0;c -e vim_surround
: 1584526982:0;c -e rg
: 1584527139:0;run-help sdfhhhasd
: 1584527161:0;rg 'state=floating'
: 1584527175:0;rg 'state=floating --hidden\
'
: 1584527182:0;rg 'state=floating' --hidden
: 1584529460:0;env
: 1584532677:0;z git weather
: 1584532684:0;vim openweathermap-fullfeatured.sh
: 1584532889:0;cd ~/mydata
: 1584532896:0;mkdir project
: 1584532901:0;cd project
: 1584532911:0;mkdir shell
: 1584532915:0;cd shell
: 1584532920:0;vim test.sh
: 1584533002:0;chmod +x test.sh
: 1584533005:0;./test.sh
: 1584533411:0;:q
: 1584536195:0;$(curl -sf "URL=${API_URL}${CITY}/?token=${KEY}")
: 1584536209:0;curl -sf "URL=${API_URL}${CITY}/?token=${KEY}"
: 1584536215:0;man curl
: 1584540946:0;yay -S firefox
: 1584545281:0;z .vim/plugged/YouCompleteMe/t
: 1584545282:0;z .vim/plugged/YouCompleteMe/
: 1584545294:0;python3 install.py -all
: 1584546268:0;cd YouCompleteMe
: 1584546283:0;python3 install.py --
: 1584546304:0;python3 install.py --all
: 1584546538:0;yay -S google-chrome
: 1584546917:0;tf 9
: 1584547072:0;t test
: 1584547350:0;sv
: 1584547624:0;xprop | grep WM_CLASS
: 1584548308:0;VIM
: 1584549598:0;z config bspwm
: 1584549603:0;cd scripts
: 1584549604:0;.s
: 1584549843:0;sh scratchpadu
: 1584550082:0;z scr
: 1584550091:0;z sxh
: 1584550508:0;man bspc
: 1584550597:0;sh scratchpadu &
: 1584550929:0;xdotool search --class scratchpadU
: 1584551504:0;vim ~/myScripts/arch.sh
: 1584551720:0;vim .zshrc
: 1584551829:0;tf 86
: 1584551855:0;gcam 'fix scratchpad'
: 1584580387:0;tf a
: 1584580584:0;z wall
: 1584580593:0;mv randall-mackey-mural2.jpg 2.jpg
: 1584600789:0;c -e vim leaderf
: 1584601046:0;z perso
: 1584601072:0;vim vim
: 1584601087:0;rm vim
: 1584601089:0;mkdir vim
: 1584601101:0;mv vim_surround vim/surround
: 1584601489:0;expr 2*2
: 1584601504:0;expr 2 + 2
: 1584601508:0;expr 2 * 2
: 1584601725:0;t add computer vocabulary for rime
: 1584606446:0;mv temp.json .config/polybar/scripts/
: 1584606448:0;ls .config/polybar/scripts/
: 1584606457:0;cd .config/polybar/scripts/
: 1584606467:0;mkdir pm25
: 1584606473:0;mv temp.json pm25
: 1584606508:0;mv myScripts/test.sh .config/polybar/scripts/pm25
: 1584606512:0;cd .config/polybar/scripts/pm25
: 1584606518:0;mv test.sh pm25.sh
: 1584606528:0;chmod +x pm25.sh
: 1584606575:0;cp mydata/project/shell/test.sh .config/polybar/scripts/pm25/pm25.sh
: 1584606580:0;cd .config/polybar/scripts/pm25/
: 1584606948:0;git add -f ../.config/polybar/scripts/
: 1584607022:0;gcam 'Add new cheat'
: 1584607633:0;cheat vim/surround
: 1584608294:0;gcam 'add pm25 module for polybar'
: 1584611494:0;cd mydata
: 1584611511:0;cd git4Install
: 1584611529:0;git clone --depth=1 https://github.com/xiaoTaoist/rime-dict.git
: 1584611568:0;cd rime-dict
: 1584611705:0;vim luna_pinyin.net.dict.yaml
: 1584612776:0;cp *.dict.yaml ~/.config/fcitx/rime
: 1584612778:0;ls ~/.config/fcitx/rime
: 1584612808:0;z .config
: 1584612812:0;cd ~/.config
: 1584612930:0;z dict
: 1584612942:0;vim luna_pinyin.extended.dict.yaml
: 1584612979:0;c rg
: 1584613004:0;rg -F 'extended.dict' .
: 1584613012:0;rg -F 'extended' /
: 1584613539:0;vim double_pinyin.custom.yaml
: 1584613574:0;vim luna_pinyin.schema.yaml
: 1584613842:0;cp mysymbols.yaml ~/.config/fcitx/rime
: 1584613873:0;ls vim
: 1584613901:0;z fcitx rime
: 1584613948:0;cd fcitx/rime
: 1584613970:0;rg -F 'extended' .
: 1584614072:0;vim luna_pinyin.english.dict.yaml
: 1584614117:0;vim luna_pinyin.poetry.dict.yaml
: 1584614372:0;vim luna_pinyin.user.dict.yaml
: 1584614798:0;cd ~/.config/fcitx/rime
: 1584614801:0;vim mysymbols.yaml
: 1584615017:0;vim luna_pinyin.website.dict.yaml
: 1584615313:0;vim luna_pinyin.shopping.dict.yaml
: 1584615427:0;kls
: 1584615917:0;cp rime rime_bak
: 1584615926:0;cp -r rime rime_bak
: 1584616007:0;cp ~/mydata/git4Install/rime-dict/* rime/
: 1584616011:0;cd rime
: 1584616122:0;pkill st
: 1584618459:0;z rime_bak
: 1584618468:0;cd .config/fcitx/rime_bak/
: 1584618551:0;fcitx &
: 1584618651:0;z rime
: 1584618658:0;z rime_
: 1584619099:0;vim .config/fcitx/rime/luna_pinyin.website.dict.yaml
: 1584619539:0;rg -F 'mysymbol' .
: 1584621172:0;ls luna_pinyin.userdb
: 1584621183:0;ls sync
: 1584621201:0;z git rime
: 1584621354:0;vim luna_pinyin.custom.yaml
: 1584621360:0;vim default.custom.yaml
: 1584622097:0;git add -f ../.config/fcitx/rime/{*.dict.yaml,mysymbols.yaml}
: 1584622114:0;gcam 'Add dicts for rime'
: 1584622223:0;z mys
: 1584622232:0;ls tasks
: 1584622246:0;tf b
: 1584625031:0;cd ~
: 1584625249:0;google-chrome-stable -h
: 1584625258:0;man google-chrome
: 1584625861:0;yay -Ss lazygit
: 1584625872:0;yay -S lazygit
: 1584628683:0;git add -f ../myStaff/wallpaper/
: 1584628717:0;gcam 'Add wallpaper'
: 1584686993:0;cd .config
: 1584687033:0;ls .config
: 1584687040:0;ls .config/nvim
: 1584687336:0;python3 -m pip install --user --upgrade pynvim
: 1584688501:0;gcam 'add archApp.sh'
: 1584700148:0;z mydata
: 1584700180:0;cd mydata/project/evernote_qs
: 1584700194:0;vim eventPage.js
: 1584700473:0;vim eomnibar.css
: 1584709509:0;vim myScripts/arch.sh
: 1584709823:0;logid -v
: 1584709832:0;sudo logid -v
: 1584710995:0;amixer -D pulse set Master 4000-
: 1584711010:0;man amixer
: 1584711078:0;amixer info
: 1584711204:0;amixer -D default set Master 100+
: 1584711253:0;alsamixer
: 1584711264:0;amixer -D default set Master 4000-
: 1584711280:0;amixer -D default set Master 4+
: 1584711398:0;amixer -D default set Master 10%+
: 1584711663:0;amixer set Master 10%+ unmute
: 1584711672:0;amixer set Master 10%-
: 1584711723:0;rg 'xbindkeys' .
: 1584711903:0;vim .xprofile
: 1584712721:0;amixer set Master mute
: 1584712858:0;pkill xbindkeys
: 1584712862:0;xbindkeys
: 1584713533:0;vim .xbindkeysrc
: 1584713667:0;htop
: 1584713867:0;pkill polybar
: 1584713869:0;vim ~/.config/polybar/launch.sh
: 1584713929:0;polybar -c ~/.config/polybar/config.ini
: 1584713948:0;polybar -c ~/.config/polybar/config.ini main
: 1584714392:0;pgrep polybar
: 1584714446:0;ps f-g31805
: 1584714479:0;ps f -g 31805
: 1584724304:0;echo $MYVIMRC
: 1584877796:0;sh ~/.config/.config/polybar/scripts/pm25/pm25.sh
: 1584877808:0;sh .config/polybar/scripts/pm25/pm25.sh
: 1584877846:0;z .config/polybar/scripts/
: 1584877857:0;./pm25.sh
: 1584877874:0;z scrip
: 1584877879:0;z poly scri
: 1584877890:0;cd pm25
: 1584877895:0;nvim pm25.sh
: 1584877913:0;curl https://api.waqi.info/feed/beijing/\?token\=f7794aaec722177e432098bfc06c29b51c4114bd
: 1584878004:0;tf 8
: 1584889257:0;mkdir Music
: 1584889267:0;mkdir Pictures
: 1584889792:0;cd .config/ranger
: 1584890365:0;sudo gparted
: 1584890419:0;sudo mount /dev/sda1 /mnt
: 1584890430:0;cd /mnt
: 1584890432:0;ls video
: 1584891279:0;~
: 1584891302:0;nvim .config/rofi/themes/nord.css
: 1584895028:0;ranger --copy-config=all
: 1584895179:0;cd ~/.config/ranger/
: 1584895585:0;nvim commands.py
: 1584899231:0;urxvt
: 1584899277:0;r
: 1584900935:0;vim ~/myScripts/archApps.sh
: 1584940002:0;apack -h
: 1584940006:0;man apack
: 1584940145:0;cd ~/mydata/currentConfig
: 1584940165:0;apack fstab hidpify.sh
: 1584943577:0;aunpack 11.zip
: 1584943592:0;ls 11
: 1584943595:0;lla 11
: 1584943980:0;yay -S zip
: 1584943986:0;yay -S rar
: 1584944023:0;apack 12.zip 11/
: 1584944699:0;ls ~/.config/ranger
: 1584944703:0;ls ~/.config/ranger/plugins
: 1584944749:0;git add -f ../.config/ranger/{commands_full.py,commands.py,rc.conf,rifle.conf,scope.sh}
: 1584952108:0;rg 'EDITOR=' .
: 1584952164:0;vim ~/.zshrc
: 1584952276:0;export EDITOR='nvim'
: 1584952364:0;z cheat
: 1584952562:0;nvim conf.yml
: 1584954903:0;vim ~/.config/ranger/rc.conf
: 1584957503:0;ra
: 1584958166:0;c chmod
: 1584970367:0;c -e ranger
: 1584970703:0;c -e chmod
: 1584971797:0;echo "$SHELL"
: 1584971891:0;which_term
: 1584971903:0;which
: 1584971907:0;which-command
: 1584972383:0;gcam 'Add ranger config'
: 1584972466:0;nvim ~/.config/ranger/rc.conf
: 1584973035:0;vim ~/.config/bspwm/bspwmrc
: 1584973973:0;git config --global core.editor nvim
: 1584973976:0;git config --list
: 1584974461:0;git status -s
: 1584974735:0;lazygit
: 1584974874:0;git diff --cached
: 1584974891:0;git add ../.zshrc
: 1584974903:0;git diff --staged
: 1584974920:0;c -e git
: 1584976003:0;z git
: 1584976018:0;mkdir gitlearn
: 1584976067:0;cd ..
: 1584976081:0;rm -rf .git
: 1584976085:0;rm README.md
: 1584976088:0;cd gitlearn
: 1584976105:0;touch README.md
: 1584976109:0;git init
: 1584976133:0;gcam 'first commit'
: 1584976145:0;git remote add origin https://github.com/blurm/learngit.git
: 1584977624:0;git rm README.md
: 1584977690:0;touch test.txt
: 1584977699:0;git add .
: 1584977718:0;gcam 'rename'
: 1584977765:0;git rm --cached test.txt
: 1584977916:0;git log
: 1584978709:0;git remote
: 1584979495:0;git remote show origin
: 1585025031:0;t font problem on chrome and some webpage
: 1585067302:0;yay -S bluez
: 1585067338:0;yay -S bluez-utils
: 1585067398:0;sudo systemctl enable bluetooth.service
: 1585067444:0;sudo systemctl start bluetooth
: 1585067518:0;systemctl status bluetooth
: 1585067533:0;systemctl start bluetooth
: 1585067558:0;nvim .zshrc
: 1585067629:0;sc-status bluetooth
: 1585067691:0;scstart bluetooth.service
: 1585067747:0;sz
: 1585067754:0;scstop bluetooth
: 1585067914:0;sudo systemctl start bluetooth.service
: 1585068230:0;sudo rfkill list
: 1585068398:0;scstart bluetooth
: 1585070835:0;sudo systemctl restart bluetooth
: 1585070847:0;scstatus bluetooth
: 1585072905:0;sudo nvim /etc/bluetooth/main.conf
: 1585073690:0;bluetoothctl