forked from CoffeeQuotes/Calibre-themes-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zsh_history
10162 lines (10154 loc) · 394 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
: 1559117116:0;bat ~/.bash_aliases
: 1559117421:0;cat ~/.bash_aliases
: 1559117466:0;bat ~/.zshrc
: 1559117484:0;nano ~/.profile
: 1559117540:0;echo $(ZSH_CUSTOM)
: 1559117546:0;echo $ZSH_CUSTOM
: 1559119800:0;cat ~/.bashrc
: 1559119859:0;npm completion >> ~/.zshrc
: 1559119951:0;cat ~/.profile
: 1559120165:0;cat ~/.bash_profile
: 1559120294:0;NPM_CONFIG_PREFIX=~/.npm-global
: 1559120323:0;jshint
: 1559120328:0;jshint --help
: 1559120335:0;jshint -h
: 1559121047:0;ydl https://www.youtube.com/watch\?v\=hZDsxbzmm6s
: 1559122987:0;mediainfo TechDox\ -\ Installing\ Arch\ 2019\ UEFI\ Mode\ \(EASY\).mkv
: 1559123022:0;xo
: 1559123055:0;VTS
: 1559123077:0;Project
: 1559123097:0;integrity_gamma
: 1559123102:0;gg
: 1559123110:0;cd gg
: 1559123216:0;infinity
: 1559123223:0;git info
: 1559123232:0;git
: 1559133054:0;yay -S battop
: 1559133877:0;battop --help
: 1559133977:0;battop -vvvvv > bat.log
: 1559133987:0;battop -vvvvv | bat.log
: 1559134012:0;cat bat.log
: 1559135174:0;rm -rvf bat.log
: 1559135197:0;cat .bzr.log
: 1559139733:0;gtop
: 1559143151:0;ydl https://youtu.be/nM9ZtCd21Q8
: 1559152325:0;battop -vvvvv
: 1559204040:0;ydl https://www.youtube.com/watch\?v\=2fliIDAIiPY
: 1559224781:0;localectl list-keymaps
: 1559226150:0;grep upgraded /var/log/pacman.log | awk -F ' ' '{print $5}' | sort | uniq -c | sort -nr
: 1559229376:0;./VMware-Workstation-Full-15.0.3-12422535.x86_64_Downloadly.ir.bundle
: 1559229383:0;sudo ./VMware-Workstation-Full-15.0.3-12422535.x86_64_Downloadly.ir.bundle
: 1559229545:0;./keygen
: 1559229669:0;nano keygen
: 1559230173:0;sudo vmware-modconfig --console --install-all
: 1559230193:0;systemctl enable vmware-networks.service
: 1559230210:0;systemctl enable vmware-usbarbitrator.service
: 1559232354:0;vmware-modconfig --console --install-all
: 1559237070:0;systemd-analyze c
: 1559275614:0;wifi
: 1559275622:0;wifi --help
: 1559275678:0;wget https://raw.githubusercontent.com/helmuthdu/aui/master/fifo
: 1559275686:0;code fifo
: 1559275888:0;package_install
: 1559312290:0;sudo pacman -Sy xfce4 xfce4-goodies network-manager-applet
: 1559313125:0;./start.sh
: 1559386757:0;mediainfo 05\ -\ Andhadhun\ -\ Wo\ Ladki\ \[Maango.ws\].mp3
: 1559454283:0;_tcptraceroute google.com
: 1559454288:0;traceroute google.com
: 1559454309:0;ping www.google.com
: 1559479088:0;ydl https://www.youtube.com/watch\?v\=NchV5UphQeQ
: 1559485551:0;ydl https://www.youtube.com/watch\?v\=B0j0-BekrwI
: 1559493965:0;ydl https://www.youtube.com/watch\?v\=-XROwenD7QY
: 1559533854:0;cd 26.Captain\ Marvel\[2019\]
: 1559533883:0;rsync -azvh Captain.Marvel.2019.720p.BluRay.x264-Pahe.in.mkv /run/media/shscs911/PRIYANKA/
: 1559533962:0;rsync -av -P Captain.Marvel.2019.720p.BluRay.x264-Pahe.in.mkv /run/media/shscs911/PRIYANKA/
: 1559540469:0;.info lynx
: 1559540482:0;pacman -Ss lynx
: 1559540618:0;.i lynx
: 1559540644:0;lynx gopher://hngopher.com
: 1559544348:0;rm -rvf *.jpg
: 1559544937:0;git clone https://github.com/bitbrute/evillimiter.git
: 1559544946:0;cd evillimiter
: 1559545011:0;_ python setup.py --record files.txt
: 1559545120:0;python setup.py --record files.txt
: 1559545156:0;python setup.py install --record files.txt
: 1559545176:0;_ python setup.py install --record files.txt
: 1559545310:0;cd //
: 1559546137:0;.i feh
: 1559548000:0;.i megasync
: 1559548026:0;yay -Ss megasync
: 1559548061:0;yay -S megasync
: 1559554231:0;ydl https://www.youtube.com/watch\?v\=zymgtV99Rko
: 1559554632:0;sudo sed -i 's/^#Color\s*$/Color/g' /etc/pacman.conf
: 1559559846:0;ydl https://www.youtube.com/watch\?v\=cvNgydui_Ic
: 1559570724:0;sudo pacman-mirrors --country Bangladesh && sudo pacman -Syyu
: 1559581066:0;lscpu
: 1559641119:0;integrity
: 1559641130:0;.glog
: 1559646056:0;git clone https://github.com/muckSponge/MaterialFox.git
: 1559646065:0;cd MaterialFox
: 1559656638:0;cat Q/Delta/KBA\ Certified\ Ethereum\ Developer.pdf
: 1559656667:0;cat Q/Delta/ProjectHandler.js
: 1559658767:0;curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin
: 1559658826:0;Q/Dogma/Blockchain/CHD/Project/integrity
: 1559658910:0;nano kitty.conf
: 1559659179:0;kitty
: 1559659343:0;sleep 10
: 1559660823:0;cd integrity
: 1559661850:0;.graph
: 1559662537:0;ydl https://www.youtube.com/watch\?v\=RTLYeyiJy8M
: 1559663563:0;gotty mpv --vo=tct How\ to\ install\ Arch\ Linux\ on\ VMware.mkv
: 1559663612:0;cat KBA\ Certified\ Ethereum\ Developer.pdf
: 1559663617:0;less KBA\ Certified\ Ethereum\ Developer.pdf
: 1559663650:0;cat Final\ Project\ Scope.pdf
: 1559663653:0;less Final\ Project\ Scope.pdf
: 1559663669:0;gotty cat subscriptions.xml
: 1559663703:0;gotty battop
: 1559663721:0;gotty gotop
: 1559663900:0;gotty
: 1559668124:0;mediainfo Kanchana\ 3\ \(2019\)\ Tamil\ Proper\ HDRip\ -\ 720p\ -\ x264\ -\ 5.1\ -\ 1.4GB\ -\ ESub.mkv
: 1559668686:0;evillimiter
: 1559670899:0;wget https://66.media.tumblr.com/6f194467a47c43196b472099247b98c5/tumblr_psks71uUF11u516bso1_500.jpg
: 1559718569:0;_ evillimiter
: 1559727811:0;localectl status
: 1559736819:0;_ ninja install
: 1559741694:0;ydl https://www.youtube.com/watch\?v\=AtXout5IAgY
: 1559748447:0;docker container rm -rf 680ad48bd800
: 1559748453:0;docker container rm 680ad48bd800
: 1559748753:0;cat keys.txt
: 1559748892:0;less keys.txt
: 1559758846:0;systemctl cat systemd-journal-flush.service | grep -i storage
: 1559759060:0;systemctl disable systemd-journal-flush.service
: 1559759072:0;systemctl status systemd-journal-flush.service
: 1559759086:0;systemctl stop systemd-journal-flush.service
: 1559759091:0;systemctl status systemd-journal-flush.service
: 1559759102:0;systemd-analyze critical-chain
: 1559759210:0;systemd-analyze
: 1559759213:0;systemd-analyze critical-chain
: 1559759222:0;systemctl status systemd-journal-flush.service
: 1559759231:0;exit
: 1559759383:0;systemctl list-dependencies systemd-journal-flush.service
: 1559759427:0;_ systemctl mask systemd-journal-flush.service
: 1559759437:0;systemd-analyze critical-chain
: 1559759450:0;systemd-analyze
: 1559785181:0;alias
: 1559785238:0;gotop
: 1559785263:0;whence
: 1559785285:0;history
: 1559789138:0;mupdf The\ Novel\'s\ Extra\ -\ Jee\ Gab\ Song.epub
: 1559790158:0;llpp The\ Novel\'s\ Extra\ -\ Jee\ Gab\ Song.epub
: 1559799379:0;git clone https://github.com/shscs911/git_training.git
: 1559801855:0;cd git_training
: 1559801984:0;l
: 1559801989:0;cat Alice.txt
: 1559802153:0;gl
: 1559802429:0;touch Bob.txt
: 1559802439:0;git status
: 1559802463:0;git add Bob.txt
: 1559802484:0;git commit
: 1559802548:0;git push
: 1559802612:0;nano Bob.txt
: 1559802626:0;git status
: 1559802653:0;git diff
: 1559802668:0;nano Bob.txt
: 1559802674:0;git diff
: 1559802688:0;git add Bob.txt
: 1559802711:0;git diff
: 1559802729:0;git diff --staged
: 1559802744:0;nano Bob.txt
: 1559802756:0;git status
: 1559810701:0;git add Bob.txt
: 1559810717:0;git commit -m "Add text to Bob"
: 1559810739:0;git log
: 1559812168:0;git push
: 1559831984:0;_ vmware-modconfig --console --install-all
: 1559832054:0;modprobe -a vmw_vmci vmmon
: 1559832326:0;setxkbmap
: 1559834733:0;modprobe -a vmw_vmci vmmon
: 1559834736:0;setxkbmap
: 1559842881:0;pv
: 1559843853:0;setxkbmap
: 1559879346:0;_ vmware-modconfig --console --install-all
: 1559879799:0;modprobe -a vmw_vmci vmmon
: 1559879802:0;setxkbmap
: 1559888288:0;modprobe -a vmw_vmci vmmon
: 1559888305:0;setxkbmap
: 1559888315:0;gotop
: 1559892981:0;setxkbmap
: 1559916927:0;neofetch
: 1559917255:0;man neofetch
: 1559917301:0;man neon
: 1559917306:0;man neon-config
: 1559919709:0;setxkbmap
: 1559964639:0;udl
: 1559970336:0;_ vmware-modconfig --console --install-all
: 1559970378:0;modprobe -a vmw_vmci vmmon
: 1559970469:0;setxkbmap
: 1560012990:0;_ vmware-modconfig --console --install-all
: 1560015619:0;setxkbmap
: 1560016154:0;ydl https://youtu.be/8939aURV9Dc
: 1560017568:0;git pull
: 1560051303:0;ydl https://youtu.be/8939aURV9Dc
: 1560052313:0;ydl -F https://www.youtube.com/watch\?v\=hMBKmQEPNzI
: 1560052349:0;ydl -f 251 https://www.youtube.com/watch\?v\=hMBKmQEPNzI
: 1560052586:0;ydl -F https://youtu.be/8939aURV9Dc
: 1560052630:0;ydl -f 299+140 https://youtu.be/8939aURV9Dc
: 1560057835:0;_ vmware-modconfig --console --install-all
: 1560061027:0;powertop
: 1560061030:0;_ powertop
: 1560064494:0;setxkbmap
: 1560089652:0;_ vmware-modconfig --console --install-all
: 1560092049:0;setxkbmap
: 1560094270:0;_ nautilus
: 1560096832:0;setxkbmap
: 1560141322:0;ydl https://twitter.com/i/status/1137649827326648320
: 1560145657:0;_ vmware-modconfig --console --install-all
: 1560148079:0;setxkbmap
: 1560152968:0;cat /usr/share/sddm/themes/ittu/theme.conf
: 1560153494:0;cd /usr/share/sddm/themes/ittu/
: 1560153639:0;cd /usr/share/sddm/themes/ittu/components/artwork/gifs/
: 1560153660:0;sudo cp 13.gif $(whoami).gif
: 1560153683:0;exit
: 1560155524:0;cd /usr/share/sddm/themes/
: 1560155557:0;cd /usr/share/sddm/themes/ittu_bottom/components/artwork/gifs/
: 1560155565:0;sudo cp 13.gif $(whoami).gif
: 1560176971:0;setxkbmap
: 1560183912:0;ydl https://youtu.be/9qrXLQqHkJk
: 1560184024:0;mediainfo Q/Delta/GhostWire\ -\ Tokyo\ â³\ Official\ E3\ Teaser.mkv
: 1560184049:0;.mpv Q/Delta/GhostWire\ -\ Tokyo\ â³\ Official\ E3\ Teaser.mkv
: 1560185325:0;wget https://cdn.shopify.com/s/files/1/1036/6433/products/SADASHIVA_copy_large.jpg\?v\=1507181397
: 1560223007:0;ydl https://youtu.be/a-gNBAhDUH8
: 1560223362:0;ydl https://youtu.be/Egzb6_HCqQw
: 1560228838:0;pstream -a
: 1560233712:0;_ vmware-modconfig --console --install-all
: 1560235837:0;setxkbmap
: 1560244509:0;mediainfo Shin.Godzilla.2016.JAPANESE.1080p.BluRay.H264.AAC-VXT.mp4
: 1560244649:0;.mpv Shin.Godzilla.2016.JAPANESE.1080p.BluRay.H264.AAC-VXT.mp4
: 1560249139:0;md ~/.config/rofi
: 1560249145:0;ls ~/.config/rofi
: 1560249206:0;cat config.rasi
: 1560249209:0;ls
: 1560249217:0;cd ~/.config/rofi
: 1560249219:0;ls
: 1560249222:0;cat config.rasi
: 1560249239:0;rofi
: 1560249252:0;rofi -show window
: 1560249258:0;rofi -show run
: 1560249267:0;rofi -show combi
: 1560249275:0;rofi -show drun
: 1560249302:0;nano config.rasi
: 1560249339:0;nano config.rasiclear
: 1560249350:0;rofi
: 1560249357:0;rofi -show window
: 1560249380:0;rofi -show drun
: 1560249393:0;rofi -show windowcd
: 1560249401:0;rofi -show drun
: 1560249405:0;rofi -show window
: 1560249412:0;rofi -show run
: 1560260012:0;rofi -show
: 1560260029:0;rofi -show window
: 1560260037:0;rofi
: 1560260043:0;rofi -show windowcd
: 1560260086:0;rofi -show keys
: 1560260102:0;rofi -show combi
: 1560265467:0;shadowfox
: 1560266662:0;git pull
: 1560310562:0;pstree
: 1560310575:0;pstree tracker
: 1560310578:0;pstree tracker-store
: 1560310586:0;info pstracker
: 1560310596:0;man pstree
: 1560310633:0;cat ~/.bash_history
: 1560310672:0;pactree -r tracker
: 1560310953:0;ping manjaro.org
: 1560311202:0;cat /etc/pacman.d/mirrorlist
: 1560311590:0;sudo iwlist wlp3s0 scan | grep \(Channel | grep -P ' \d+' -o | sort -g | uniq -c | awk '{ print $2 " " $1}' | termgraph
: 1560314078:0;inxi -I
: 1560314099:0;inxi -i
: 1560314128:0;inxi -Fxrz
: 1560314350:0;ag
: 1560321724:0;cat https://velt.io/vosinstall.sh
: 1560321790:0;curl -fO https://velt.io/vosinstall.sh
: 1560321795:0;cat vosinstall.sh
: 1560321855:0;.del
: 1560321861:0;delete
: 1560321867:0;rm -rvf vosinstall.sh
: 1560332353:0;ydl https://www.youtube.com/watch\?v\=A9yUROnrq9w
: 1560333286:0;timeshift --h
: 1560333294:0;_ timeshift
: 1560333396:0;mediainfo Chanakya\ thanthram\ malayalam\ serial\ title\ song.mkv
: 1560333537:0;ffmpeg -hide_banner -i Chanakya\ thanthram\ malayalam\ serial\ title\ song.mkv -vn -acodec copy Chanakya.Thanthram.aac
: 1560333643:0;sudo pacman -Syu
: 1560333651:0;nmtui
: 1560333669:0;sudo pacman -Syu
: 1560336081:0;systemctl reboot
: 1560340347:0;pactree -r tracker
: 1560340364:0;systemd-analyze
: 1560340368:0;systemd-analyze critical-chain
: 1560340393:0;pactree -r baloo
: 1560340405:0;systemctl status baloo
: 1560341122:0;ydl -F https://www.youtube.com/watch\?v\=A9yUROnrq9w
: 1560341155:0;ydl -f 140 https://www.youtube.com/watch\?v\=A9yUROnrq9w
: 1560343714:0;ydl https://www.youtube.com/watch\?v\=WX9TDlEoQFo
: 1560343863:0;.mpv Q/Delta/Nerkonda\ Paarvai\ -\ Official\ Movie\ Trailer\ _\ Ajith\ Kumar\ _\ Shraddha\ Srinath\ _\ Yuvan\ Shankar\ Raja.mkv
: 1560350057:0;mkdir -p ~/.local/share/kservices5/
: 1560350065:0;cp ~/.local/share/kwin/scripts/krohnkite/metadata.desktop ~/.local/share/kservices5/krohnkite.desktop
: 1560357441:0;caja
: 1560358526:0;_ nano theme.conf
: 1560359426:0;_ pv rebirth.gif /usr/share/sddm/themes/ittu/components/artwork/gifs/
: 1560359445:0;_ cp rebirth.gif /usr/share/sddm/themes/ittu/components/artwork/gifs/
: 1560359514:0;sudo cp rebirth.gif $(whoami).gif
: 1560359529:0;cd components/
: 1560359538:0;cd artwork/gifs
: 1560359541:0;sudo cp rebirth.gif $(whoami).gif
: 1560359914:0;wget https://upload.wikimedia.org/wikipedia/en/thumb/7/79/Chanakyadvd.jpg/250px-Chanakyadvd.jpg
: 1560360389:0;_ nano /usr/share/sddm/themes/ittu/theme.conf
: 1560403271:0;grep -i "Using input driver" /var/log/Xorg.0.log
: 1560414940:0;ydl https://www.youtube.com/watch\?v\=rDoFiOjoC2Y
: 1560415832:0;journalctl -p err -b
: 1560423630:0;cat /etc/X11/default-display-manager
: 1560423639:0;ls /etc/X11/default-display-manager
: 1560423646:0;ls /etc/X11/
: 1560423667:0;ls /etc/X11/xorg.conf.d/
: 1560423675:0;cat /etc/X11/xorg.conf.d/00-keyboard.conf
: 1560424152:0;ls -la
: 1560424157:0;ll
: 1560424159:0;nnn
: 1560432134:0;jobs
: 1560432293:0;plasmashell -v
: 1560433294:0;pacman -Qdtq
: 1560433651:0;_ vmware-modconfig --console --install-all
: 1560435770:0;setxkbmap
: 1560436219:0;cd /tmp && wget https://framagit.org/fmr/Gedit_Arc_theme/-/archive/master/Gedit_Arc_theme-master.tar && tar xvf Gedit_Arc_theme-master.tar && Gedit_Arc_theme-master && mv arc.xml $HOME/.local/share/gedit/styles/
: 1560436561:0;man tput
: 1560436572:0;tput clear
: 1560441129:0;setxkbmap
: 1560445364:0;_ caja
: 1560450469:0;setxkbmap
: 1560480225:0;_ nano /usr/share/sddm/themes/ittu/theme.conf
: 1560482604:0;_ vmware-modconfig --console --install-all
: 1560488781:0;setxkbmap
: 1560505919:0;mkdir -p ~/.devilspie
: 1560505926:0;nano ~/.devilspie/vscode_transparent.ds
: 1560513979:0;setxkbmap
: 1560514772:0;jak
: 1560514813:0;man jak
: 1560514817:0;info jak
: 1560514819:0;jak
: 1560514829:0;jak --help
: 1560514852:0;jak -d www.xda-developers.com
: 1560514946:0;jak-cli --url https://manjaro.org --title Manjaro.org
: 1560514953:0;jak --url https://manjaro.org --title Manjaro.org
: 1560514966:0;jak-cli --url https://manjaro.org
: 1560514973:0;jak --url https://manjaro.org
: 1560514978:0;jak https://manjaro.org
: 1560516363:0;setxkbmap
: 1560521290:0;free -w -h
: 1560522257:0;_ vmware-modconfig --console --install-all
: 1560529648:0;setxkbmap
: 1560530302:0;ping reddit.com
: 1560530358:0;setxkbmap
: 1560566888:0;sudo cp terminator.gif $(whoami).gif
: 1560566917:0;sudo mv termiantor.gif terminator.gif
: 1560566923:0;sudo cp terminator.gif $(whoami).gif
: 1560567074:0;sudo cp 5.gif $(whoami).gif
: 1560571744:0;_ vmware-modconfig --console --install-all
: 1560575316:0;setxkbmap
: 1560575830:0;nano userContent.css
: 1560578270:0;setxkbmap
: 1560654985:0;systemd-analyze
: 1560654992:0;systemd-analyze critical-chain
: 1560657357:0;_ vmware-modconfig --console --install-all
: 1560662172:0;setxkbmap
: 1560662291:0;ffmpeg -i Avengers.Infinity.War.2018.REMASTERED.1080p.BluRay.x264.DD5.1-Pahe.in.mkv -map 0:s:0 subs.srt
: 1560662348:0;mediainfo Avengers.Infinity.War.2018.REMASTERED.1080p.BluRay.x264.DD5.1-Pahe.in.mkv
: 1560662470:0;mkvextract Avengers.Infinity.War.2018.REMASTERED.1080p.BluRay.x264.DD5.1-Pahe.in.mkv 5:sub.srt
: 1560662494:0;mkvextract tracks Avengers.Infinity.War.2018.REMASTERED.1080p.BluRay.x264.DD5.1-Pahe.in.mkv 5:sub.srt
: 1560662534:0;mkvextract tracks Avengers.Infinity.War.2018.REMASTERED.1080p.BluRay.x264.DD5.1-Pahe.in.mkv 4:sub2.srt
: 1560663716:0;gotop
: 1560663732:0;exit
: 1560665061:0;setxkbmap
: 1560703224:0;_ vmware-modconfig --console --install-all
: 1560703948:0;setxkbmap
: 1560744699:0;git clone https://github.com/laurent22/joplin.git
: 1560744815:0;cd joplin/Tools
: 1560744822:0;npm install
: 1560744832:0;..
: 1560744843:0;ElectronClient/app
: 1560744854:0;rsync --delete -a ../../ReactNativeClient/lib/ lib/
: 1560744860:0;npm install
: 1560744974:0;yarn dist
: 1560745019:0;..
: 1560745027:0;./run.sh
: 1560745041:0;l
: 1560745047:0;cd app
: 1560745048:0;l
: 1560745054:0;dist
: 1560745056:0;l
: 1560745062:0;./Joplin\ 1.0.160.AppImage
: 1560745398:0;_ vmware-modconfig --console --install-all
: 1560745554:0;setxkbmap
: 1560764857:0;wget -O bootstrap.py https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
: 1560764867:0;code bootstrap.py
: 1560773366:0;gotop
: 1560773381:0;htop
: 1560773387:0;exit
: 1560773927:0;setxkbmap
: 1560773990:0;systemd-analyze blame
: 1560780265:0;neofetch
: 1560781314:0;ydl -F https://youtu.be/Oy3U_sPaky8
: 1560781967:0;ydl -f 251 https://youtu.be/Oy3U_sPaky8
: 1560782066:0;Q/Delta
: 1560782084:0;mediainfo Bear\ McCreary\ -\ Theme\ from\ Child\'s\ Play\ \(Official\ Audio\).webm
: 1560782126:0;mkvextract tracks Bear\ McCreary\ -\ Theme\ from\ Child\'s\ Play\ \(Official\ Audio\).webm 1:Child
: 1560782155:0;mkvextract tracks Bear\ McCreary\ -\ Theme\ from\ Child\'s\ Play\ \(Official\ Audio\).webm 1:Child.ogg
: 1560782257:0;lollypop Bear\ McCreary\ -\ Theme\ from\ Child\'s\ Play.ogg
: 1560782415:0;ffmpeg -i Bear\ McCreary\ -\ Theme\ from\ Child\'s\ Play\ \(Official\ Audio\).webm -vn -y abc.ogg
: 1560784760:0;setxkbmap
: 1560784933:0;.u
: 1560784970:0;yay
: 1560788293:0;lspci | grep -e VGA -e 3D
: 1560824956:0;cat ~/.zshrc
: 1560825537:0;ydl https://youtu.be/06rueu_fh30
: 1560826315:0;ydl https://youtu.be/ZtYTwUxhAoI
: 1560826685:0;df -h
: 1560826983:0;yay -Scc
: 1560827182:0;rm -rvf opera-developer-ffmpeg-codecs
: 1560833142:0;vainfo
: 1560833243:0;vdpauinfo
: 1560833255:0;grep -iE 'vdpau | dri driver' ~/.local/share/xorg/Xorg.0.log
: 1560833279:0;journalctl -b | grep -iE 'vdpau | dri driver\
q
: 1560833399:0;ls /usr/lib/modules/$(uname -r)/kernel/drivers/cpufreq/
: 1560833508:0;i7z
: 1560833521:0;_ i7z
: 1560833597:0;systemctl status
: 1560833673:0;xinput list
: 1560833697:0;libinput list-devices\
: 1560833786:0;free -h
: 1560833808:0;hdparm -t /dev/sda
: 1560833811:0;_ hdparm -t /dev/sda
: 1560833833:0;pstree
: 1560833885:0;lspci -tv
: 1560833918:0;parted /dev/sda
: 1560833926:0;_ parted /dev/sda
: 1560834018:0;fc-list
: 1560834112:0;showconsolefont
: 1560834121:0;_ showconsolefont
: 1560834319:0;systemctl --failed
: 1560834325:0;_ systemctl --failed
: 1560834333:0;journalctl -p 3 -xb
: 1560834614:0;kdesu dolphin
: 1560834630:0;kdesu dbus-launch dolphin
: 1560834664:0;journalctl -p 3 -xb
: 1560834811:0;find / -xtype l -print
: 1560834819:0;_ find / -xtype l -print
: 1560834876:0;lsblk
: 1560836831:0;_ vmware-modconfig --console --install-all
: 1560837629:0;setxkbmap
: 1560843639:0;gotop
: 1560843747:0;neofetch
: 1560847251:0;setxkbmap
: 1560860517:0;_ nano /etc/vmware/config
: 1560860573:0;nano ~/.vmare/config
: 1560860582:0;ls ~/.vmare/config
: 1560870652:0;setxkbmap
: 1560876669:0;gotop
: 1560876673:0;exit
: 1560876936:0;setxkbmap
: 1560882709:0;setxkbmap vm
: 1560882715:0;setxkbma
: 1560882717:0;setxkbmap
: 1560882790:0;htop
: 1560882856:0;_ pacman -Syu
: 1560913508:0;_ nano /etc/pacman.conf
: 1560922761:0;_ vmware-modconfig --console --install-all
: 1560923049:0;gotop -abp
: 1560926072:0;setxkbmap
: 1560930545:0;_ pacman -Syu
: 1560930557:0;_ yay
: 1560930571:0;yay
: 1560934052:0;setxkbmap
: 1560936716:0;exit
: 1560936973:0;setxkbmap
: 1560938100:0;timeshift-autosnap
: 1560938118:0;_ timeshift-autosnap
: 1560938173:0;_ nano /etc/timeshift-autosnap.conf
: 1560938309:0;_ pacman -S glances
: 1560938335:0;glances
: 1560938515:0;man pacman
: 1560938599:0;_ pacman -R glances
: 1560938611:0;_ pacman -Rn glances
: 1560938617:0;_ pacman -Rc glances
: 1560938623:0;_ pacman -R glances
: 1560938949:0;setxkbmap
: 1560946386:0;_ pacman -Syu
: 1560946397:0;yay
: 1560948700:0;_ vmware-modconfig --console --install-all
: 1560953798:0;setxkbmap
: 1561021173:0;adb
: 1561021185:0;adb devices
: 1561021191:0;adb shell
: 1561021296:0;adb pull -a /sdcard/TBone/
: 1561021919:0;_ pacman -Syu
: 1561022098:0;_ vmware-modconfig --console --install-all
: 1561022708:0;_ pacman -Syu
: 1561022719:0;_ pacman -Syyuu
: 1561023729:0;setxkbmap
: 1561054019:0;_ pacman -Syu
: 1561054027:0;yay
: 1561054168:0;_ vmware-modconfig --console --install-all
: 1561054889:0;setxkbmap
: 1561092345:0;_ vmware-modconfig --console --install-all
: 1561093005:0;setxkbmap
: 1561094593:0;_ vmware-modconfig --console --install-all
: 1561094783:0;systemd-analyze blame
: 1561094792:0;systemd-analyze
: 1561094796:0;systemd-analyze critical-chain
: 1561095233:0;setxkbmap
: 1561124318:0;_ vmware-modconfig --console --install-all
: 1561125082:0;nano ~/.zshrc
: 1561126439:0;_ pacman -Syuu
: 1561126956:0;_ pacman -Rc timeshift-autosnap
: 1561127013:0;_ rm -rvf *
: 1561127046:0;_ pacman -Syuu
: 1561127056:0;_ pacman -Syu
: 1561128858:0;_ rm -rvf timeshift-autosnap.conf.pacsave
: 1561131354:0;setxkbmap
: 1561131372:0;yay
: 1561131422:0;yay -Syuu
: 1561131451:0;yay
: 1561132057:0;yay -Scc
: 1561170018:0;_ vmware-modconfig --console --install-all
: 1561170791:0;ydl https://youtu.be/41rJGonibcY
: 1561171544:0;udl
: 1561171578:0;ydl https://youtu.be/41rJGonibcY
: 1561171987:0;qdbus org.kde.KWin /KWin supportInformation
: 1561172105:0;systemctl list-unit-files --state=enabled
: 1561172328:0;setxkbmap
: 1561184640:0;gotop -abp
: 1561184660:0;exit
: 1561188625:0;setxkbmap
: 1561189759:0;yay
: 1561194150:0;yay -Scc
: 1561194161:0;_ pacman -Syu
: 1561195164:0;setxkbmap
: 1561195176:0;gotop -abp
: 1561196348:0;setxkbmap
: 1561227521:0;alias
: 1561227636:0;setxkbmap
: 1561261329:0;_ pacman -Syu
: 1561261377:0;_ pacman -Syyuu
: 1561261429:0;yay
: 1561261463:0;_ vmware-modconfig --console --install-all
: 1561267487:0;setxkbmap
: 1561297039:0;_ vmware-modconfig --console --install-all
: 1561297170:0;_ pacman -Syu
: 1561297176:0;yay
: 1561297313:0;gotop -abp
: 1561298671:0;setxkbmap
: 1561298795:0;glog
: 1561298807:0;git pull
: 1561298866:0;angular-cli
: 1561298884:0;nginx
: 1561298910:0;npm install -g @angular/cli
: 1561299029:0;cd uploader-client
: 1561299039:0;voter-client
: 1561299220:0;l
: 1561299233:0;..
: 1561299244:0;cat Docs/README.md
: 1561299264:0;npm install
: 1561299308:0;ng build
: 1561299352:0;npm install
: 1561299380:0;ng build
: 1561299455:0;l
: 1561299478:0;dist/uploader-client
: 1561299535:0;dist/voter-client
: 1561299688:0;l
: 1561299701:0;sudo cp nginx.conf /etc/nginx/nginx.conf
: 1561299728:0;cat /etc/nginx/nginx.conf
: 1561299747:0;/etc/init.d/nginx restart
: 1561299757:0;nginx restart
: 1561299772:0;systemctl status nginx.service
: 1561299782:0;systemctl restart nginx.service
: 1561299794:0;systemctl status nginx.service
: 1561299821:0;journalctl -xe
: 1561299865:0;systemctl status nginx.service
: 1561299873:0;cat /etc/nginx/nginx.conf
: 1561299900:0;_ nano /etc/nginx/nginx.conf
: 1561299915:0;systemctl restart nginx.service
: 1561299924:0;systemctl status nginx.service
: 1561299931:0;cat /etc/nginx/nginx.conf
: 1561299945:0;systemctl status nginx.service
: 1561299963:0;_ nano /etc/nginx/nginx.conf
: 1561300253:0;systemctl status nginx.service
: 1561300256:0;systemctl restart nginx.service
: 1561300261:0;systemctl status nginx.service
: 1561300271:0;_ nano /etc/nginx/nginx.conf
: 1561300454:0;cat /run/nginx.pid
: 1561300574:0;systemctl restart nginx.service
: 1561300579:0;systemctl status nginx.service
: 1561300648:0;cat /run/nginx.pid
: 1561300654:0;_ nano /etc/nginx/nginx.conf
: 1561300674:0;systemctl restart nginx.service
: 1561300679:0;systemctl status nginx.service
: 1561300749:0;_ nano /etc/nginx/nginx.conf
: 1561301669:0;git checkout -b athul
: 1561301682:0;git add .
: 1561302014:0;git commit -m "New branch"
: 1561302452:0;ydl https://youtu.be/ZoR7D0Y-6j4
: 1561311215:0;alias
: 1561311230:0;up
: 1561312385:0;_ pacman -Syu
: 1561312392:0;yay
: 1561312572:0;date -u +%V$(uname)|sha224sum|sed 's/\W//g\
: 1561312583:0;date -u +%V$(uname)|sha224sum|sed 's/\W//g\
hello
: 1561312612:0;date -u +%V$(uname)|sha224sum|sed 's/\W//g\
hello\
: 1561312624:0;date -u +%V $(uname)|sha224sum|sed 's/\W//g\
hello\
: 1561313054:0;\
hello
: 1561313062:0;setxkbmap
: 1561345424:0;_ vmware-modconfig --console --install-all
: 1561346182:0;pacman -Qdt
: 1561346288:0;pacman -Qdtt
: 1561346365:0;pacman -Qdt
: 1561346425:0;_ pacman -S pkgbrowser
: 1561348107:0;setxkbmap
: 1561348142:0;_ pacman -Rs brave-bin
: 1561348171:0;gotop -abp
: 1561348256:0;yay
: 1561348270:0;exit
: 1561352084:0;_ pacman -Syu
: 1561352092:0;yay
: 1561352427:0;setxkbmap
: 1561353471:0;yay -Scc
: 1561353481:0;df -h
: 1561353525:0;df
: 1561353528:0;du
: 1561353540:0;man du
: 1561353560:0;..
: 1561353574:0;du /home
: 1561353661:0;_ pacman -S ncdu
: 1561353750:0;ncdu
: 1561353760:0;..
: 1561353768:0;ncdu -ch
: 1561353771:0;ncdu -h
: 1561353795:0;du -ch /
: 1561353806:0;du -sh /
: 1561353817:0;_ du -csh
: 1561353821:0;_ du -csh /
: 1561354746:0;_ du -csh /home
: 1561363156:0;pactree -r qt4
: 1561363319:0;_ pacman -Rncs qt4
: 1561363548:0;_ pacman -Ss anbox
: 1561363555:0;yay -Ss anbox
: 1561386862:0;pulseaudio -k
: 1561388775:0;setxkbmap
: 1561394926:0;yay
: 1561396291:0;git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions
: 1561396389:0;ping github.com
: 1561396452:0;git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions
: 1561396478:0;nano ~/.zshrc
: 1561396502:0;autoload -U compinit && compinit
: 1561396517:0;. ~/.zshrc
: 1561433144:0;_ vmware-modconfig --console --install-all
: 1561441675:0;setxkbmap
: 1561471967:0;wget https://github.com/Sentinel-One/sack-cve-fixer/raw/master/sack_cve_fixer.sh
: 1561471991:0;_ ./sack_cve_fixer.sh check
: 1561472021:0;_ ./sack_cve_fixer.sh
: 1561472036:0;bash
: 1561472312:0;..
: 1561472320:0;_ rm -rvf libinput_gestures_qt-master
: 1561472396:0;git clone https://github.com/alex47/KDE-Rounded-Corners
: 1561472415:0;cd KDE-Rounded-Corners
: 1561472423:0;mkdir qt5build
: 1561472428:0;qt5build
: 1561472445:0;cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DQT5BUILD=ON && make && sudo make install && (kwin_x11 --replace &)
: 1561472561:0;ls
: 1561472618:0;git clone https://github.com/lingtjien/Grid-Tiling-Kwin.git
: 1561472668:0;kpackagetool5 --type KWin/Script -i /home/shscs911/Q/Dogma/Source/Grid-Tiling-Kwin
: 1561472679:0;mkdir -p ~/.local/share/kservices5
: 1561472684:0;cd ~/.local/share/kservices5
: 1561472715:0;ln -s /home/shscs911/Q/Dogma/Source/Grid-Tiling-Kwin/metadata.desktop kwin-script-grid-tiling.desktop
: 1561483839:0;_ pacman -Scc
: 1561483847:0;yay -Scc
: 1561486095:0;ydl https://youtu.be/jFKTNZnaEE0
: 1561518100:0;ydl https://youtu.be/V7Fi5o4WUrw
: 1561519646:0;ydl https://youtu.be/CGrCFUDe1hc
: 1561519792:0;ydl https://youtu.be/o03UBGiZhyM
: 1561523566:0;_ vmware-modconfig --console --install-all
: 1561523617:0;yay
: 1561525518:0;yay -Scc
: 1561527946:0;setxkbmap
: 1561528399:0;neofetch
: 1561528407:0;screenfetch
: 1561528427:0;uname -a
: 1561528438:0;lsb_release -a
: 1561528441:0;lsb_release
: 1561528444:0;lsb_release -u
: 1561528447:0;lsb_release -h
: 1561530850:0;setxkbmap
: 1561533841:0;ping archlinux.org
: 1561534014:0;cat /etc/pacman.d/mirrorlist
: 1561534035:0;ping https://www.mirrorservice.org/sites/repo.manjaro.org/repos/stable
: 1561534042:0;ping www.mirrorservice.org/sites/repo.manjaro.org/repos/stable
: 1561534049:0;ping google.com
: 1561534088:0;ping mirrorservice.org
: 1561534124:0;ping archlinux.org
: 1561534158:0;ping reddit.com
: 1561534186:0;exit
: 1561534228:0;ping reddit.com
: 1561534232:0;nmtui
: 1561534248:0;ping reddit.com
: 1561534259:0;rtv
: 1561534333:0;hostname
: 1561534347:0;ping reddit.com/r/funny
: 1561534350:0;ping reddit.com
: 1561534357:0;ping www.reddit.com
: 1561534380:0;ping www.manjaro.org
: 1561534387:0;ping www.manjaro.org/news
: 1561534407:0;elinks www.manjaro.org/news
: 1561534501:0;elinks https://www.google.com
: 1561534677:0;cat /etc/resolv.conf
: 1561535430:0;nnn
: 1561535783:0;ls
: 1561535792:0;ll
: 1561535793:0;l
: 1561535809:0;cat .Shinjiru.log
: 1561535819:0;rm -rvf .Shinjiru.log
: 1561535827:0;.w3m
: 1561535828:0;l
: 1561535836:0;..
: 1561536166:0;_ pacman -S nnn
: 1561536201:0;nnn
: 1561536765:0;tmux
: 1561536787:0;exit
: 1561536790:0;nano ~/.zshrc
: 1561536941:0;tmux
: 1561536947:0;. ~/.zshrc
: 1561536950:0;tmux
: 1561538159:0;git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
: 1561538174:0;nano ~/.tmux.conf
: 1561538367:0;. ~/.tmux.conf
: 1561538374:0;tmux
: 1561538393:0;tmux source ~/.tmux.conf
: 1561538430:0;tmux
: 1561541623:0;l
: 1561541689:0;cat .angular-config.json
: 1561541748:0;tmux
: 1561541844:0;l
: 1561541849:0;nnn
: 1561541853:0;gotop -abp
: 1561541895:0;tmux
: 1561541926:0;Q/Delta
: 1561541930:0;nnn
: 1561541936:0;ls
: 1561541948:0;Q/Bravo
: 1561541950:0;l
: 1561541961:0;htop
: 1561541974:0;tmux
: 1561542063:0;nano ~/.tmux.conf
: 1561542091:0;tmux
: 1561542095:0;zsh -dfxc /home/shscs911/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/bin/gitstatusd-linux-x86_64 --lock-fd=3 --parent-pid=15562 --num-threads=16 --max-num-staged=1 --max-num-unstaged=1 --max-num-untracked=1 --dirty-max-index-size=-1 echo -nE $'byex1f0x1e'
: 1561542095:0;zsh -dfxc /home/shscs911/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/bin/gitstatusd-linux-x86_64 --lock-fd=3 --parent-pid=15596 --num-threads=16 --max-num-staged=1 --max-num-unstaged=1 --max-num-untracked=1 --dirty-max-index-size=-1 echo -nE $'byex1f0x1e'
: 1561542095:0;zsh -dfxc /home/shscs911/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/bin/gitstatusd-linux-x86_64 --lock-fd=3 --parent-pid=15637 --num-threads=16 --max-num-staged=1 --max-num-unstaged=1 --max-num-untracked=1 --dirty-max-index-size=-1 echo -nE $'byex1f0x1e'
: 1561542129:0;tmux
: 1561542132:0;zsh -dfxc /home/shscs911/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/bin/gitstatusd-linux-x86_64 --lock-fd=3 --parent-pid=17581 --num-threads=16 --max-num-staged=1 --max-num-unstaged=1 --max-num-untracked=1 --dirty-max-index-size=-1 echo -nE $'byex1f0x1e'
: 1561542132:0;zsh -dfxc /home/shscs911/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/bin/gitstatusd-linux-x86_64 --lock-fd=3 --parent-pid=17615 --num-threads=16 --max-num-staged=1 --max-num-unstaged=1 --max-num-untracked=1 --dirty-max-index-size=-1 echo -nE $'byex1f0x1e'
: 1561542132:0;zsh -dfxc /home/shscs911/.oh-my-zsh/custom/themes/powerlevel10k/gitstatus/bin/gitstatusd-linux-x86_64 --lock-fd=3 --parent-pid=17656 --num-threads=16 --max-num-staged=1 --max-num-unstaged=1 --max-num-untracked=1 --dirty-max-index-size=-1 echo -nE $'byex1f0x1e'
: 1561542145:0;nano ~/.tmux.conf
: 1561542210:0;tmux
: 1561542223:0;Q/Chimaera
: 1561542227:0;htop
: 1561542255:0;nnn
: 1561542272:0;tmux
: 1561542290:0;nano ~/.tmux.conf
: 1561542313:0;tmux show -g default-command
: 1561542318:0;tmux
: 1561542366:0;ls
: 1561542374:0;nnn
: 1561542385:0;cat ~/.zshrc
: 1561542490:0;l
: 1561542643:0;cat /etc/pacman.d/mirrorlist
: 1561542729:0;exit
: 1561542872:0;nano ~/.tmux.conf
: 1561542908:0;tmux
: 1561542932:0;gotop
: 1561542942:0;ls -l
: 1561543045:0;nano ~/.tmux.conf
: 1561543069:0;tmux source-file ~/.tmux.conf
: 1561543077:0;tmux
: 1561543081:0;gotop
: 1561543091:0;ls -l
: 1561543095:0;nnn
: 1561544111:0;tmux
: 1561544118:0;nano ~/.tmux.conf
: 1561544446:0;_ vmware-modconfig --console --install-all
: 1561544894:0;setxkbmap
: 1561566621:0;cat /etc/rc.conf
: 1561566634:0;ls /etc/rc_maps.cfg
: 1561566639:0;cat /etc/rc_maps.cfg
: 1561602866:0;systemd-analyze critical-chain
: 1561602880:0;systemd-analyze
: 1561602889:0;systemd-analyze blame
: 1561603068:0;pactree -r lvm2
: 1561603165:0;pacman -Si lvm2
: 1561603303:0;_ systemctl mask lvm2-monitor.service
: 1561603314:0;yay
: 1561604488:0;_ vmware-modconfig --console --install-all
: 1561616259:0;setxkbmap
: 1561619093:0;yay
: 1561619124:0;man krunner
: 1561619130:0;krunner --help
: 1561619209:0;krunner https://www.wuxiaworld.com/novel/stop-friendly-fire/sff-chapter-262
: 1561619218:0;krunner gg https://www.wuxiaworld.com/novel/stop-friendly-fire/sff-chapter-262
: 1561619230:0;firefox-developer-edition https://www.wuxiaworld.com/novel/stop-friendly-fire/sff-chapter-262
: 1561619273:0;man at
: 1561619278:0;at
: 1561619362:0;sleep 30 && firefox-developer-edition https://www.wuxiaworld.com/novel/stop-friendly-fire/sff-chapter-262
: 1561619515:0;sleep 4.5h && firefox-developer-edition https://www.wuxiaworld.com/novel/stop-friendly-fire/sff-chapter-262
: 1561621845:0;_ pacman -S vorbis-tools
: 1561621879:0;git clone https://github.com/wimpysworld/antsy-alien-attack
: 1561622056:0;cd antsy-alien-attack
: 1561622062:0;./aaa.sh
: 1561622073:0;sh aaa.sh
: 1561622082:0;bash
: 1561622100:0;./aaa.sh
: 1561622225:0;cat aaa.sh
: 1561622244:0;bash
: 1561622298:0;./aaa.sh
: 1561622329:0;antsy-alien-attack
: 1561622334:0;sh aaa.sh
: 1561622339:0;./aaa.sh
: 1561622403:0;urxvt
: 1561622408:0;xvt
: 1561622411:0;xterm
: 1561622416:0;./aaa.sh
: 1561622590:0;bash aaa.sh
: 1561630760:0;ydl -F https://www.youtube.com/watch\?v\=BkNc2rlLSgk
: 1561630818:0;ydl https://www.youtube.com/watch\?v\=BkNc2rlLSgk
: 1561645714:0;setxkbmap
: 1561646646:0;cat > version-check.sh << "EOF"\
#!/bin/bash\
# Simple script to list version numbers of critical development tools\
export LC_ALL=C\
bash --version | head -n1 | cut -d" " -f2-4\
MYSH=$(readlink -f /bin/sh)\
echo "/bin/sh -> $MYSH"\
echo $MYSH | grep -q bash || echo "ERROR: /bin/sh does not point to bash"\
unset MYSH\
\
echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-\
bison --version | head -n1\
\
if [ -h /usr/bin/yacc ]; then\
echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`";\
elif [ -x /usr/bin/yacc ]; then\
echo yacc is `/usr/bin/yacc --version | head -n1`\
else\
echo "yacc not found" \
fi\
\
bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d" " -f1,6-\
echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2\
diff --version | head -n1\
find --version | head -n1\
gawk --version | head -n1\
\
if [ -h /usr/bin/awk ]; then\
echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";\
elif [ -x /usr/bin/awk ]; then\
echo awk is `/usr/bin/awk --version | head -n1`\
else \
echo "awk not found" \
fi\
\
gcc --version | head -n1\
g++ --version | head -n1\
ldd --version | head -n1 | cut -d" " -f2- # glibc version\
grep --version | head -n1\
gzip --version | head -n1\
cat /proc/version\
m4 --version | head -n1\
make --version | head -n1\
patch --version | head -n1\
echo Perl `perl -V:version`\
python3 --version\
sed --version | head -n1\
tar --version | head -n1\
makeinfo --version | head -n1 # texinfo version\
xz --version | head -n1\
\
echo 'int main(){}' > dummy.c && g++ -o dummy dummy.c\
if [ -x dummy ]\
then echo "g++ compilation OK";\
else echo "g++ compilation failed"; fi\
rm -f dummy.c dummy\
EOF\
: 1561646654:0;bash version-check.sh
: 1561646712:0;mhwd -li
: 1561646757:0;man mhwd-kernel
: 1561646764:0;mhwd-kernel -li
: 1561646772:0;mhwd-kernel
: 1561646776:0;mhwd-kernel -h
: 1561646782:0;mhwd-kernel -l
: 1561646840:0;_ pacman -S grub-customizer
: 1561647535:0;yay -S odrive-bin
: 1561647554:0;yay -Scc
: 1561655449:0;udl
: 1561656531:0;git clone https://github.com/freefreeno/Night-Terror-Plasma-GTK-Colorsheme
: 1561657885:0;yay
: 1561657899:0;_ pacman -Syu
: 1561657911:0;yay -Scc
: 1561659099:0;pactree -r mariadb
: 1561660072:0;setxkbmap
: 1561690725:0;yay
: 1561690985:0;_ vmware-modconfig --console --install-all
: 1561692330:0;setxkbmap
: 1561697644:0;pactree -r mariadb-libs
: 1561704271:0;_ pacman -Qi mdf2iso
: 1561704281:0;mdf2iso --h
: 1561704291:0;mdf2iso HERETIC_II.mdf
: 1561704316:0;_ pacman -Qi fuseiso
: 1561704324:0;fuseiso HERETIC_II.mdf
: 1561704365:0;fuseiso HERETIC_II.mdf Heretic\ II
: 1561704676:0;wine H2_Setup.exe
: 1561706180:0;fuseiso -u HERETIC_II.mdf
: 1561706204:0;fusermount Heretic\ II/
: 1561706210:0;fusermount -u Heretic\ II/
: 1561712976:0;ydl https://youtu.be/22rLzgXTC8g
: 1561726788:0;setxkbmap
: 1561781085:0;uptime
: 1561781697:0;systemctl status apparmor.service
: 1561781740:0;pacman -Si drkonqi
: 1561781750:0;pacman -Qi drkonqi
: 1561781761:0;_ pacman -Qi drkonqi
: 1561782177:0;_ vmware-modconfig --console --install-all
: 1561783367:0;_ pacman -Qi firefox-developer-edition
: 1561788069:0;setxkbmap
: 1561794850:0;DeepNude.exe
: 1561794853:0;./DeepNude.exe
: 1561794861:0;wine DeepNude.exe
: 1561801431:0;node --version
: 1561801434:0;yay
: 1561801613:0;inxi -Fxzc0
: 1561802161:0;pacman -Rns $(pacman -Qtdq)
: 1561802164:0;_ pacman -Rns $(pacman -Qtdq)
: 1561802205:0;yay -Scc
: 1561802212:0;df -h
: 1561802351:0;pactree -rl qt4
: 1561802357:0;pactree -r qt4
: 1561802373:0;pactree -r kdelibs
: 1561802384:0;pactree -rl kdelibs
: 1561802412:0;_ pacman -Rs qt4
: 1561802437:0;_ pacman -Rsc qt4
: 1561802682:0;_ pacman -Rnsc qt4
: 1561802751:0;pamac info qt4
: 1561802777:0;pamac info qt5
: 1561802793:0;pacman -Qi qt5
: 1561802798:0;pacman -Si qt5
: 1561802862:0;pacman -Si qt5-base
: 1561802890:0;pactree -r qt5-base
: 1561802946:0;_ pacman -Rnsc qt4
: 1561803018:0;pacman -Ss sni-qt
: 1561803428:0;pacman -Ss libappindicator3
: 1561803519:0;_ pacman -S hardcode-tray-git
: 1561803529:0;yay -S hardcode-tray-git
: 1561804438:0;hardcode-tray
: 1561804444:0;_ hardcode-tray
: 1561813023:0;setxkbmap
: 1561813116:0;yya
: 1561813118:0;yay
: 1561815315:0;rm -rvf *
: 1561816568:0;gio mime inode/directory
: 1561816911:0;ncdu
: 1561816917:0;ncdu -h
: 1561816959:0;yay -S cliqz-bin
: 1561818909:0;git pull
: 1561831183:0;yay
: 1561831332:0;screenfetch
: 1561831338:0;neofetch
: 1561867656:0;man pactree
: 1561867688:0;pactree -rc qt5-base
: 1561867706:0;systemd-analyze
: 1561867710:0;systemd-analyze blame
: 1561867752:0;pactree -r qt4
: 1561867758:0;systemd-analyze critical-chain
: 1561871312:0;pip install ffpass
: 1561871380:0;pip install --user ffpass
: 1561871445:0;/home/shscs911/.local/bin/ffpass import --from passwords.csv
: 1561871464:0;Q/Delta
: 1561871469:0;/home/shscs911/.local/bin/ffpass import --from passwords.csv
: 1561871498:0;/home/shscs911/.local/bin/ffpass import -f passwords.csv
: 1561871512:0;pip uninstall --user ffpass
: 1561871518:0;pip uninstall ffpass
: 1561871543:0;_ pip install ffpass
: 1561871580:0;ffpass import --from passwords.csv
: 1561871618:0;pip uninstall ffpass
: 1561871625:0;_ pip uninstall ffpass
: 1561871634:0;pip install --user ffpass
: 1561871727:0;/home/shscs911/.local/bin/ffpass import -f passwords.csv -d /home/shscs911/.mozilla/firefox/xgo1bwpy.dev-edition-default/
: 1561873493:0;yay
: 1561873537:0;_ vmware-modconfig --console --install-all