-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zsh_history
executable file
·10678 lines (10637 loc) · 383 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
: 1515270334:0;man dhcpcd
: 1515270395:0;sudo dhcpcd -xx
: 1515270519:0;lspci -v
: 1515270559:0;pacaur -Ss aspm
: 1515270613:0;pacaur -Ss r8169
: 1515270638:0;pacaur -S r8169aspm-dkms
: 1515270726:0;syncing -z
: 1515270779:0;ip link eno1
: 1515270787:0;ip link show eno1
: 1515270897:0;sudoip link set wlo1 down
: 1515270907:0;ip likn
: 1515270966:0;sudo pkill dhcpcd
: 1515271231:0;ifconfig eno1
: 1515271248:0;ifconfig eno1 up
: 1515271251:0;sudo ifconfig eno1 up
: 1515271265:0;dhclient
: 1515271269:0;sudo dhclient
: 1515271389:0;pkill rsync
: 1515271627:0;man udev
: 1515271647:0;pacaur -Ss ethernet
: 1515271812:0;lspci | grep ethernet
: 1515271822:0;lspci | grep Ethernet
: 1515271849:0;rfkill -l
: 1515271854:0;rfkill --list
: 1515271858:0;rfkill -
: 1515271861:0;rfkill --help
: 1515271921:0;dmesg | grep r8169
: 1515272105:0;vim /etc/udev/udev.conf
: 1515272138:0;vim /etc/udev/
: 1515272198:0;systemctl list-jobs
: 1515272200:0;systemctl list-job
: 1515272204:0;systemctl list-sockets
: 1515272444:0;pacaur -Ss eno1
: 1515272479:0;if
: 1515272482:0;man iw
: 1515272564:0;modprobe r8169aspm-dkms
: 1515272575:0;pacaur -Ss realtex
: 1515272583:0;pacaur -Ss realtek
: 1515272642:0;pacaur -R r8169aspm-dkms
: 1515272681:0;pacaur -Ss r8168
: 1515272690:0;pacaur -S r8168
: 1515272709:0;udevadm
: 1515272718:0;udevil
: 1515272744:0;pacaur -Qs internet
: 1515272749:0;gnaughty
: 1515272764:0;pacaur -Qs tool
: 1515272788:0;wirefilter
: 1515272901:0;pacaur 0Ss pssh
: 1515272907:0;pacaur -Ss pssh
: 1515272922:0;pacaur -S psh
: 1515272980:0;pacaur -Qs net
: 1515273062:0;get net-tools
: 1515273071:0;ethtool-h
: 1515273119:0;pacaur -Qs tool --color=always | less -R
: 1515273154:0;prsync -avW --inplace --human-readable --progress --partial --itemize-changes --size-only Pixel_2@192.168.0.6:/storage/emulated/0/Download/Stuff/ ~/Downloads/stuff\
: 1515273257:0;prsync -av --inplace --human-readable --progress --partial --itemize-changes --size-only Pixel_2@192.168.0.6:/storage/emulated/0/Download/Stuff/ ~/Downloads/stuff\
: 1515273296:0;prsync -av --human-readable --progress --partial --itemize-changes --size-only Pixel_2@192.168.0.6:/storage/emulated/0/Download/Stuff/ ~/Downloads/stuff\
: 1515273305:0;prsync -av --progress --partial --itemize-changes --size-only Pixel_2@192.168.0.6:/storage/emulated/0/Download/Stuff/ ~/Downloads/stuff\
: 1515273315:0;prsync -av --size-only Pixel_2@192.168.0.6:/storage/emulated/0/Download/Stuff/ ~/Downloads/stuff\
: 1515273322:0;prsync -av Pixel_2@192.168.0.6:/storage/emulated/0/Download/Stuff/ ~/Downloads/stuff\
: 1515273362:0;prsync -av ~/Downloads/stuff Pixel_2@192.168.0.6:/storage/emulated/0/Download/Stuff/\
: 1515273421:0;tk
: 1515273565:0;syncing --max-size=1GB
: 1515273672:0;ipmaddr
: 1515273720:0;eth
: 1515273773:0;sudo ethtool eno1
: 1515273885:0;syncing --max-size=1GB --remove-source-files
: 1515273933:0;pacaur -Ss rsync --color=always | less -R
: 1515274181:0;pacaur -S librsync-git rsync-git
: 1515274223:0;alias-vi -r
: 1515274229:0;alias-vi -Z
: 1515274253:0;echo 'Remote Files' = $(ssh -t Pixel_2@192.168.0.6 'ls -aR Download/ \
stuff | wc -l'); echo 'Local Files' = $(ls -aR ~/Downloads/stuff/ | wc -l)"
: 1515274259:0;echo 'Remote Files' = $(ssh -t Pixel_2@192.168.0.6 'ls -aR Download/ \
stuff | wc -l'); echo 'Local Files' = $(ls -aR ~/Downloads/stuff/ | wc -l)
: 1515274272:0;ssh P
: 1515274340:0;yaourt -S librsync-git rsync-git
: 1515274432:0;trizen -S librsync-git
: 1515274555:0;dhcpcd eno1
: 1515274569:0;sudo dhcpcd --help
: 1515274604:0;pacaur -Ss connman
: 1515274611:0;yaourt -S librsync-git
: 1515274620:0;pacaur -S rsync-git
: 1515274654:0;wicd
: 1515274658:0;sudo wicdd
: 1515274664:0;sudo wicd
: 1515274699:0;ping arch-omen
: 1515274742:0;pacaur -Ss ifplug
: 1515274749:0;pacaur -S ifplug
: 1515274777:0;pacaur -S ifplugd
: 1515275018:0;alias-v
: 1515275136:0;wifi-status --help
: 1515275161:0;wifi-status
: 1515275197:0;pacaur -Qs rsync
: 1515275234:0;vim -d /etc/rsyncd.conf /etc/rsyncd.conf.pacsave
: 1515275255:0;vim -d /etc/rsyncd.conf
: 1515275308:0;pacaur -Ss wifi
: 1515275439:0;pacaur -Ss internet
: 1515275907:0;pacaur -speedtest-cli-gi smssender-gui
: 1515275929:0;pacaur -S speedtest-cli-gi smssender-gui
: 1515275941:0;pacaur -S speedtest-cli-git smssender-gui
: 1515276000:0;speedtest-cli
: 1515276529:0;gnaughty --help
: 1515276565:0;ls -aR /usr/share/ | grep gnaughty
: 1515276981:0;pacaur -Ss vimvi
: 1515276984:0;pacaur -Ss vimiv
: 1515276989:0;pacaur -S vimiv-git
: 1515277015:0;pacaur -S vimiv-libgexiv2:
: 1515277019:0;pacaur -S vimiv-libgexiv2
: 1515277031:0;pacaur -Slibgexiv2:
: 1515277039:0;pacaur -S libgexiv2
: 1515277327:0;syncing
: 1515277396:0;dwn
: 1515277420:0;ls -aR stuff/ | grep .jpg
: 1515277508:0;pacaur -Ss delet
: 1515277511:0;pacaur -Ss delete
: 1515277592:0;sr S how to see amount of space saved after running rm command
: 1515277660:0;df --help
: 1515277686:0;du --help
: 1515277769:0;man du
: 1515277820:0;info coreutils
: 1515277840:0;pacaur -Ss info
: 1515278017:0;pacaur -Ss fiel manager
: 1515278022:0;pacaur -Ss file manager
: 1515278089:0;dmenfm -
: 1515278313:0;pacaur -S kdinu-git worker thunar-git dinu rox raw-thumbnailer
: 1515278699:0;alias | grep pac
: 1515278746:0;get nemo-git
: 1515278771:0;huh caja
: 1515278815:0;pacaur -S dinu-git worker thunar-git dinu rox raw-thumbnailer
: 1515278833:0;get \
ipacaur -S caja
: 1515278835:0;get \
pacaur -S caja
: 1515278869:0;worker
: 1515278903:0;huh nemo
: 1515278908:0;get nemo'
: 1515278909:0;get nemo
: 1515278949:0;pacaur -S dinu-git worker dinu
: 1515279216:0;sudo pacman -Sy opam aspcud make m4 patch unzip gcc sed awk grep camlp4
: 1515279251:0;opam init --comp=4.04.1
: 1515279290:0;dinu
: 1515279795:0;opam depext -i 0install
: 1515279856:0;pacaur -Ss 0launch
: 1515280141:0;vim .config/mpv/mpv.conf
: 1515280184:0;man mp
: 1515280593:0;umpv Downloads/4f92c00b-4670-4695-b581-54232757af12.png
: 1515280626:0;umpv Downloads/stuff/Anal\ Newbies\ 6\ XXX\ WEB-DL\ x264-TRB
: 1515280794:0;clockdiff
: 1515280803:0;cacaclock
: 1515280814:0;pacaur -Qs time
: 1515280840:0;pacaur -Qs clock
: 1515280851:0;bash-fuzzy-clock
: 1515280861:0;pacaur -Si clock-git
: 1515280887:0;uhr
: 1515280897:0;uhr --help
: 1515280900:0;uhr -l
: 1515280915:0;uhr -break'
: 1515280917:0;uhr -break
: 1515280937:0;uhr big
: 1515280946:0;uhr clock
: 1515280961:0;uhr simple
: 1515280966:0;uhr break
: 1515281148:0;rm -r .jpg
: 1515281158:0;rm -r *.jpg
: 1515281161:0;man rm
: 1515283362:0;vim /usr/bin/umpv
: 1515283397:0;pacaur -Qs file
: 1515283403:0;pacaur -Qs manager
: 1515283646:0;pacaur -Qs file manaer
: 1515283650:0;pacaur -Qs file manager
: 1515283681:0;pacaur -Qs file manager --color=always | less -R
: 1515283729:0;ln -sfd Downloads/stuff/ ~/
: 1515283734:0;ln -sfd Downloads/stuff/ ~/stf
: 1515283752:0;rm stf
: 1515283758:0;ln -sfd Downloads/stuff/ ~/1stf
: 1515283827:0;huh vide eh
: 1515283831:0;huh vide es
: 1515283851:0;huh video player es
: 1515283900:0;get movie-monad
: 1515283970:0;get binkplayer
: 1515284035:0;pacman -Ss video
: 1515284038:0;pacman -Ss video player
: 1515284052:0;pacau -Ss movie
: 1515284054:0;pacaur -Ss movie
: 1515284683:0;pacaur -Ss media videeo
: 1515284689:0;pacaur -Ss video player
: 1515284759:0;pacaur -S qmplay2 rage-git
: 1515285062:0;QMPlay2
: 1515285297:0;pacaur -Ss video
: 1515285340:0;ffplay
: 1515285412:0;cd .config/mpv
: 1515285422:0;ls /xdg
: 1515285432:0;im input.conf
: 1515285434:0;vim input.conf
: 1515286362:0;mpv --input-test --force-window --idle
: 1515286670:0;rm -R Downloads/stuff/hypno/
: 1515286675:0;sudo rm -R Downloads/stuff/hypno/
: 1515287052:0;cd Downloads/stuff
: 1515287257:0;rsync -avW --remove-source-files --inplace --human-readable --progress --partial ./* ~/vids/
: 1515287557:0;rsync --include
: 1515287614:0;ls vid
: 1515287617:0;ls vids
: 1515287685:0;hav video es
: 1515287695:0;hav explorer es
: 1515287707:0;hav file+manager
: 1515287762:0;vim .worker/config
: 1515287799:0;man dinu
: 1515287802:0;dinu --help
: 1515287856:0;pacaur -Ss rox
: 1515287897:0;man lf
: 1515287901:0;lf --help
: 1515287911:0;xnc
: 1515287912:0;cd /home/nikd
: 1515287924:0;cd /
: 1515287942:0;thunar
: 1515287955:0;sunflower
: 1515287979:0;nav
: 1515287991:0;fman
: 1515288055:0;cd .config/donnatella
: 1515288057:0;vim donnatella.conf
: 1515288079:0;lf
: 1515288201:0;huh file manager es
: 1515288227:0;rsync -avW --remove-source-files --inplace --human-readable --progress --partial --include.mpv ./ ~/vids/
: 1515288250:0;rsync -avW --remove-source-files --inplace --human-readable --progress --partial --include ".avi"./ ~/vids/
: 1515288262:0;rsync --help
: 1515288272:0;man rsyhnc
: 1515288508:0;get polo-bin thefile polo-bin
: 1515288808:0;huh file es
: 1515288871:0;get verne-git bsc filemanager-actions
: 1515289062:0;get bsc filemanager-actions
: 1515289161:0;thefile --help
: 1515289167:0;man thefile
: 1515289178:0;thefile -h
: 1515289245:0;bsc
: 1515289300:0;hav file es
: 1515289311:0;hav manageres
: 1515289325:0;pacaur -Ss thunar
: 1515289561:0;clex
: 1515289642:0;mkdir prawn
: 1515289668:0;rsync -avW --remove-source-files --inplace --human-readable --progress --partial --include='.avi' --include='.mp4' --include='.wmv' ~/vids/ ~/prawn/
: 1515289688:0;hav manager es
: 1515289696:0;hav file es
: 1515289902:0;pacaur -Si .thefile
: 1515289913:0;pacaur -Si thefile
: 1515289964:0;rsync -avW --remove-source-files --inplace --human-readable --progress --partial --include='.avi' --include='.mp4' --include='.wmv' ~/Downloads/stuff ~/prawn/
: 1515290295:0;rm -r prawn
: 1515290300:0;rm -r vids
: 1515290309:0;rm -r Downloads/stuff
: 1515291139:0;http https://greasyfork.org/scripts/1573-the-pirate-bay-cleaner/code/The%20Pirate%20Bay%20Cleaner.user.js
: 1515291223:0;http -o .config/vimb/pirate-clean.js https://greasyfork.org/scripts/1573-the-pirate-bay-cleaner/code/The%20Pirate%20Bay%20Cleaner.user.js
: 1515291290:0;http -o .config/vimb/scripts.js https://greasyfork.org/scripts/1573-the-pirate-bay-cleaner/code/The%20Pirate%20Bay%20Cleaner.user.js
: 1515291762:0;blue 5000
: 1515291935:0;pacaur -Ss userscript
: 1515291950:0;pacaur -Ss users script
: 1515292025:0;pacaur -Ss qup
: 1515292336:0;pacaur -S chromium-widevine
: 1515292422:0;pacaur -Qs chrome
: 1515292434:0;pacaur -R google-chrome-dev
: 1515292639:0;pacaur -Ss chrome
: 1515292705:0;pacaur -Qs chromium
: 1515292714:0;pacaur -R chromium-widevine
: 1515292778:0;pacaur -S qupzilla
: 1515293001:0;pacaur -R chromium
: 1515293007:0;pacaur -R chromium archon
: 1515293015:0;pacaur -Ss chromium
: 1515293104:0;pacaur -S chromium
: 1515293324:0;pacaur -S chromium uget-chrome-wrapper chrome-cntp
: 1515293678:0;vim .config/nyaovim
: 1515293686:0;man nyaovim
: 1515293752:0;nyaovim
: 1515293852:0;pacaur -Qs nya
: 1515293860:0;pacaur -R nyaovim
: 1515293889:0;qupzilla --help
: 1515294009:0;huh brwoser es
: 1515294027:0;huh browser es
: 1515294043:0;pacaur -Qs firefox
: 1515294588:0;huh firefox rust es
: 1515294600:0;huh servo
: 1515294612:0;get otter-browser falkon-git basilisk-bin sqlitebrowser min servo-git
: 1515299586:0;oadb -l
: 1515300090:0;adb shell
: 1515300115:0;adb shell pm grant com.dp.logcatapp android permissions READ_LOGS
: 1515300144:0;adb shell pm grant com.dp.logcatapp android.permissions READ_LOGS
: 1515300148:0;adb shell pm grant com.dp.logcatapp android.permission READ_LOGS
: 1515300172:0;adb shell pm grant com.dp.logcatapp android.permission.READ_LOGS
: 1515300404:0;adb backup -apk -shared -all
: 1515300469:0;pacaur -Ss android backup
: 1515300486:0;pacaur -Ss android
: 1515300505:0;huh android es
: 1515300835:0;pacaur -Ss falkon
: 1515300961:0;adb backup
: 1515300967:0;adb backup --help
: 1515301110:0;pacaur -Si logcat-colorize
: 1515301194:0;pacaur -Si pidcat
: 1515301264:0;pacaur -R logcat-colorize; pacaur -S pidcat
: 1515301297:0;pidcat
: 1515301318:0;pidcat --help
: 1515301368:0;pacaur -R pidcat; pacaur -S logcat-color
: 1515301488:0;pacaur -Ss logcat
: 1515301521:0;pacaur -S logcat-colorizer android-coloredlogcat
: 1515301540:0;pacaur -S logcat-colorize android-coloredlogcat
: 1515301586:0;pacaur -Qs servo
: 1515301616:0;adb-log
: 1515301632:0;coloredlogcat.py
: 1515301639:0;adb logcat | coloredlogcat.py
: 1515301650:0;adb logcat | colorize
: 1515301659:0;adb logcat | logcat-color
: 1515301708:0;pacaur -Ss brave
: 1515301713:0;pacaur -Ss min
: 1515301726:0;pacaur -Ss min browser
: 1515301769:0;pacaur -Ss otter
: 1515301799:0;pacaur -S otter-browser-weekly
: 1515301858:0;yaourt -S servo-git
: 1515301935:0;du -h backup.ab
: 1515301939:0;rm backup.ab
: 1515301945:0;adb backup -apk -shared -nosystem
: 1515301977:0;adb logcat | logcat-colorize
: 1515302200:0;adb backup -apk -shared -nosystem -all
: 1515303295:0;mkdir Backups/PixelShit
: 1515303326:0;scp -vrp Pixel_2@192.168.0.6/storage/emulated/0/SmsContactsBackup/* ~/Backups/PixelShit/
: 1515303399:0;scp -vrp Pixel_2@192.168.0.6:/storage/emulated/0/SmsContactsBackup/* ~/Backups/PixelShit/
: 1515303427:0;ssh Pixel_2@192.168.0.6
: 1515303445:0;scp -vrp Pixel_2@192.168.0.6:SmsContactsBackup/* ~/Backups/PixelShit/
: 1515303524:0;scp -vrp Pixel_2@192.168.0.6:/SmsContactsBackup/* ~/Backups/PixelShit/
: 1515303530:0;scp -vrp Pixel_2@192.168.0.6:/SmsContactsBackup/ ~/Backups/PixelShit/
: 1515303539:0;scp -vrp Pixel_2@192.168.0.6:/SmsContactsBackup ~/Backups/PixelShit/
: 1515303655:0;rsync -av Pixel_2@192.168.0.6:/SmsContactsBackup ~/Backups/PixelShit/
: 1515303695:0;rsync -av --human-readable --progress -- Pixel_2@192.168.0.6:/SmsContactsBackup/* ~/Backups/PixelShit/
: 1515303758:0;adb sync --
: 1515303780:0;adb help
: 1515303824:0;rsync -av --human-readable --progress -- Pixel_2@192.168.0.6:/SmsContactsBackup/ ~/Backups/PixelShit/
: 1515303858:0;rsync -av --human-readable --progress -- Pixel_2@192.168.0.6:/storage/emulated/9/SmsContactsBackup/ ~/Backups/PixelShit/
: 1515303963:0;rsync -av --human-readable --progress -- Pixel_2@192.168.0.6:/storage/emulated/9/Downloads/ ~/Backups/PixelShit/
: 1515304060:0;scp -vrp myphone@192.168.0.6:/SmsContactsBackup ~/Backups/PixelShit/
: 1515304106:0;scp -vrp myphone@192.168.0.6:/storage/emulated/0/Downloads/SmsContactsBackup/* ~/Backups/PixelShit/
: 1515304119:0;scp -vrp myphone@192.168.0.6:/storage/emulated/0/Download/SmsContactsBackup/* ~/Backups/PixelShit/
: 1515304209:0;scp -vrp myphone@192.168.0.6:/Download/SmsContactsBackup/* ~/Backups/PixelShit/
: 1515304217:0;scp -vrp myphone@192.168.0.6:/Download/SmsContactsBackup/ ~/Backups/PixelShit/
: 1515304230:0;ls Backups/PixelShit
: 1515304406:0;rsync -av --human-readable --progress myphonen@192.168.0.6/storage/emulated/0/Download/SmsContactsBackup/
: 1515304417:0;rsync -av --human-readable --progress myphonen@192.168.0.6/storage/emulated/0/Download/SmsContactsBackup/ ./
: 1515304423:0;rsync -av --human-readable --progress myphonen@192.168.0.6/storage/emulated/0/Download/SmsContactsBackup/* ./
: 1515304443:0;rsync -av --human-readable --progress myphone@192.168.0.6/storage/emulated/0/Download/SmsContactsBackup/ ./
: 1515304463:0;rsync -av --human-readable --progress myphone@192.168.0.6:/storage/emulated/0/Download/SmsContactsBackup/ ./
: 1515304480:0;pacaur -S brave-git
: 1515304575:0;rm -r Backups/PixelShit/*
: 1515304584:0;cd Backups/PixelShit/
: 1515304661:0;adb shell pm grant in.tsdo.elw android.permission.WRITE_SECUTE_SETTINGS
: 1515304688:0;adb shell pm grant in.tsdo.elw android.permission.WRITE_SECURE_SETTINGS
: 1515304752:0;scp -prv myphone@192.168.0.6:/storage/emulated/0/Download/SmsContactsBackup/ ./
: 1515304811:0;hav mpt
: 1515304815:0;hav mtp
: 1515304860:0;jmtpfs --help } less
: 1515304875:0;jmtpfs --help
: 1515305132:0;jmtpfs ~/Pixel2/ -o allow_other -o uid=1000 -o big_writes
: 1515305200:0;jmtpfs ~/Pixel2/ -o uid=1000 -o big_writes
: 1515305237:0;sudo umount -a
: 1515305283:0;go-mtpfs
: 1515305303:0;cd Internal\ shared\ storage
: 1515305386:0;rsync -av --human-readable --progress Download/SmsContactsBackup/* ~/Backups/PixelShit
: 1515305391:0;rsync -av --human-readable --progress Download/SmsContactsBackup/ ~/Backups/PixelShit/
: 1515305442:0;h | grep rsync | less
: 1515305479:0;rsync -arv --human-readable --progress Download/SmsContactsBackup/ ~/Backups/PixelShit
: 1515305492:0;ls ~/Backups/PixelShit
: 1515305512:0;h | grep scp
: 1515305539:0;rsync -arv --human-readable --progress Downloads/SmsContactsBackups/ ~/Backups/PixelShit
: 1515305552:0;scp -prv Download/SmsContactsBackup/
: 1515305590:0;scp -prv ~/Pixel2/Internal\ shared\ storage/Download/SmsContactsBackup/ ~/Backups/PixelShit/
: 1515305597:0;cp -prv ~/Pixel2/Internal\ shared\ storage/Download/SmsContactsBackup/ ~/Backups/PixelShit/
: 1515305646:0;cp -a ~/Pixel2/Internal\ shared\ storage/Download/SmsContactsBackup/ ~/Backups/PixelShit/
: 1515305652:0;rsync -arv --human-readable --progress Download/SmsContactsBackup/ ~/Backups/PixelShi
: 1515305657:0;cd Backups/PixelShit
: 1515305661:0;ls -Ra
: 1515305675:0;cd Download/SmsContactsBackup
: 1515305721:0;cp -R ./* ~/Backups/PixelShit/
: 1515305730:0;cp -R ./.~/Backups/PixelShit/
: 1515305734:0;cp -R ./. ~/Backups/PixelShit/
: 1515305737:0;cp -R ./ ~/Backups/PixelShit/
: 1515305752:0;sudo cp -R ./ ~/Backups/PixelShit/
: 1515305761:0;sudo cp -R ~/Backups/PixelShit/
: 1515305770:0;sudo cp -R '*' ~/Backups/PixelShit/
: 1515305820:0;c lls
: 1515305903:0;adb device
: 1515310678:0;pacaur -Ss google drive
: 1515310723:0;yaourt -S grive gdrive
: 1515312168:0;pacaur -Ss servo
: 1515312206:0;pacaur -S servo-latest
: 1515312390:0;vimb Cruz.html&
: 1515312396:0;vimb Cruz.html HeyGuys.html&
: 1515312403:0;cd Documents/Craigslist
: 1515312423:0;vimb Cruz.html HeyGuys.html& && vimb Cruz.html
: 1515312438:0;vimb Cruz.html HeyGuys.html&; vimb Cruz.html
: 1515312448:0;vimb Cruz.html HeyGuys.html&; vimb Cruz.html&
: 1515312752:0;cd ../Images/MEE
: 1515313022:0;huh google photos
: 1515313041:0;pacaur -S skicka
: 1515313093:0;grive
: 1515313298:0;grive -a
: 1515313350:0;sudo grive
: 1515313438:0;gdrive help options
: 1515313443:0;gdrive help lsit
: 1515313482:0;grive --help
: 1515313538:0;vim .skicka.config
: 1515313608:0;skicka -no-browser-auth ls
: 1515313690:0;grive
: 1515313804:0;skicka ls 'Google Photos/'
: 1515313820:0;skicka ls -R 'Google Photos/'
: 1515313831:0;skicka ls -r 'Google Photos/'
: 1515314001:0;sudo grive
: 1515314050:0;hav google
: 1515314070:0;skicka df -
: 1515314074:0;skicka df help
: 1515314080:0;skicka help cat
: 1515314468:0;pacaur -S gvfs
: 1515314476:0;gvfs-
: 1515314479:0;gvfs-cat
: 1515314494:0;gvfs-mount
: 1515314501:0;gio
: 1515314521:0;mkdir GDrive
: 1515314536:0;gio mount
: 1515314540:0;gio mount help
: 1515314550:0;gio ls
: 1515314609:0;gio help mount
: 1515314642:0;gio list
: 1515314657:0;gio mount -m GDrive
: 1515314661:0;sudo gio mount -m GDrive
: 1515314666:0;man gio
: 1515314688:0;sudo gio mount GDrive
: 1515314828:0;fastboot reboot
: 1515314877:0;sudo gio mount 'Google Photos'
: 1515326318:0;iwconfig wlo1
: 1515326355:0;kip link
: 1515362816:0;fastboot flashing lock_critical
: 1515385219:0;unzip -Z help
: 1515385222:0;unzip -Z
: 1515385396:0;pacaur -Ss flash all
: 1515385407:0;pacaur -Ss pixel
: 1515385623:0;kill --help
: 1515385627:0;kill -l
: 1515385749:0;mkdir AndroidRoot
: 1515385776:0;mv Downloads/HTTP/Magisk-v15.2\(1520\).zip AndroidRoot
: 1515385808:0;mv Downloads/HTTP/taimen-opd3.170816.023-factory-b8ea4687.zip Android
: 1515385849:0;mv Android AndroidRoot/taimen-opd3.170816.023-factory-b8ea4687.zip
: 1515385887:0;unzip *.zi
: 1515385889:0;unzip *.zip
: 1515385899:0;unzip Magisk-v15.2\(1520\).zip
: 1515386042:0;mkdir Magisk && unzip Magisk-v15.2\(1520\).zip -d Magisk
: 1515386104:0;mkdir TaimenFactoryImage
: 1515386116:0;unzip taimen-opd3.170816.023-factory-b8ea4687.zip -d TaimenFactoryImage/g
: 1515386120:0;unzip taimen-opd3.170816.023-factory-b8ea4687.zip -d TaimenFactoryImage
: 1515386133:0;cd TaimenFactoryImage
: 1515386448:0;cd AndroidRoot/Magisk/
: 1515386496:0;sudo chmod 777 Magisk
: 1515386507:0;sudo chmod -R 777 Magisk
: 1515386509:0;sudo ./magiskboot
: 1515386541:0;cd .64'\
: 1515386543:0;cd .64
: 1515386553:0;./magiskboot
: 1515386557:0;./magiskinit
: 1515386675:0;rm -R Magisk
: 1515386686:0;unzip Magisk-v15.2\(1520\).zip Magisk
: 1515386699:0;unzip Magisk-v15.2\(1520\).zip -d Magisk
: 1515386743:0;cd Magisk
: 1515386817:0;adb push Magisk-v15.2\(1520\).zip /storage/emulated/0/Download/
: 1515387477:0;db push image-taimen-opd3.170816.023.zip
: 1515387504:0;adb push image-taimen-opd3.170816.023.zip storage/emulated/0/Download/
: 1515387832:0;adb push radio-taimen-g8998-00122-1708231715.img /storage/emulated/0/Download/
: 1515387964:0;adb push bootloader-taimen-tmz10n.img /storage/emulated/0/Download/
: 1515388229:0;unzip -p image-taimen-opd3.170816.023.zip
: 1515388473:0;aria2c https://dl.google.com/dl/android/aosp/walleye-ota-opd3.170816.023-b97764eb.zip -d AndroidRoot/
: 1515388502:0;du taimen-opd3.170816.023
: 1515388509:0;du -h taimen-opd3.170816.023
: 1515388587:0;unzip -l walleye-ota-opd3.170816.023-b97764eb.zip
: 1515389364:0;mv ../Downloads/HTTP/MagiskManager-v5.5.3.apk ./
: 1515389482:0;adb push MagiskManager-v5.5.3.apk /storage/emulated/0/Download/
: 1515389529:0;cd AndroidRoot
: 1515389608:0;cd taimen-opd3.170816.023
: 1515389614:0;ls image-taimen-opd3.170816.023.zip
: 1515389622:0;unzip -l image-taimen-opd3.170816.023.zip
: 1515389667:0;du image-taimen-opd3.170816.023.zip
: 1515389677:0;du -h image-taimen-opd3.170816.023.zip
: 1515389690:0;unzip -d bootloader-taimen-tmz10n image-taimen-opd3.170816.023.zip
: 1515389700:0;rm bootloader-taimen-tmz10n
: 1515389708:0;rm -r bootloader-taimen-tmz10n
: 1515389729:0;unzip -d image-taimen-opd3.170816.023 image-taimen-opd3.170816.023.zip
: 1515389789:0;cd image-taimen-opd3.170816.023
: 1515389873:0;adb push boot.img /storage/emulated/0/Download/
: 1515389936:0;dc ..
: 1515390029:0;adb pull /storage/emulated/0/MagiskManager/patched_boot.img
: 1515390070:0;fastboot flash patched_boot.img
: 1515390093:0;fastboot flash
: 1515390095:0;fastboot flash --help
: 1515390193:0;fastboot flashing unlock
: 1515390204:0;fastboot flashing unlock_critical
: 1515390213:0;fastboot boot flash
: 1515390217:0;fastboot flash boot patched_boot.img
: 1515390576:0;mkdir AndroidRoot/TWRP
: 1515390580:0;aria2c -d AndroidRoot/TWRP
: 1515390589:0;aria2c -d AndroidRoot/TWRP https://dl.twrp.me/walleye/twrp-pixel2-installer-walleye-3.2.1-0.zip
: 1515390621:0;aria2c -d AndroidRoot/TWRP https://dl.twrp.me/walleye/twrp-3.2.1-0-walleye.img
: 1515391050:0;sudo fastboot flash boot patched_boot.img
: 1515391230:0;fastboot --help
: 1515391290:0;fastboot reboot-bootloader
: 1515391296:0;fastboot
: 1515391298:0;fastboot devices
: 1515391320:0;adb root
: 1515391431:0;cd TWRP
: 1515391515:0;adb reboot bootloader
: 1515391558:0;fastboot boot twrp-3.2.1-0-walleye.img
: 1515392062:0;adb install MagiskManager-v5.4.1.apk
: 1515392175:0;adb uninstall com.topjohnwu.magisk
: 1515392217:0;adb install MagiskManager-v5.5.3.apk
: 1515392838:0;mv queue queue.comp
: 1515392843:0;touch que
: 1515392853:0;mv que queue
: 1515392922:0;cat .config/vimb/config
: 1515394148:0;cd Videos/prawns
: 1515394788:0;pacaur -Ss unicode
: 1515395865:0;huh unicodeA es
: 1515395871:0;huh unicode es
: 1515396041:0;huh unicode list es
: 1515396067:0;huh unicode library es
: 1515396188:0;pacaur -Ss arcon
: 1515396197:0;pacaur -Ss apk
: 1515397987:0;i3vi
: 1515398741:0;pacaur -Ss signal
: 1515400454:0;pacaur -Ss javascript
: 1515400465:0;huh javascript es
: 1515400508:0;huh jquery
: 1515400533:0;pacaur -S jquery
: 1515402694:0;arai2c
: 1515402702:0;aria2c -h
: 1515406871:0;unzip linux.zip -d linux
: 1515407881:0;cd Downloads/linux
: 1515407908:0;cd app
: 1515407910:0;vim config.js
: 1515407929:0;vim host.js
: 1515407936:0;vim install.js
: 1515407942:0;vim messaging.js
: 1515407954:0;cd node
: 1515407957:0;cd x64
: 1515407960:0;cd no
: 1515407966:0;vim node
: 1515408875:0;cd Videos/prawns/
: 1515408878:0;cd Vids
: 1515408894:0;umpv Tiny_Girl_Big_Cock
: 1515411098:0;huh webcam
: 1515411125:0;get qtcam
: 1515411127:0;get qtcam-git
: 1515412751:0;hey gmail
: 1515412753:0;huh gmail
: 1515413107:0;huh gmail curses es
: 1515413115:0;huh gmail terminal es
: 1515413121:0;gmail terminal
: 1515413152:0;what gmail
: 1515413158:0;huh gmail terminal
: 1515413250:0;yaourt yaourt -S sup
: 1515413333:0;pacaur -Si aerc-git
: 1515413391:0;pacaur -S aerc-git
: 1515413454:0;pacaur -Ss termbox
: 1515413461:0;pacaur -S termbox-git
: 1515413501:0;yaourt -S aerc-git
: 1515413561:0;ls | grep aerc
: 1515413604:0;cp -R aerc/ ~/.config/
: 1515413694:0;cd .config/
: 1515413697:0;cd aerc
: 1515413704:0;vim -o accounts.conf aerc.conf
: 1515413744:0;cat alternate
: 1515413747:0;cat muttrc
: 1515413773:0;vim -o alternate personal spam work
: 1515413946:0;man gmailc
: 1515413960:0;ls /etc/ | grep gmailc
: 1515413984:0;gmailc --help
: 1515414008:0;gmailc -u draghster@gmail.com -p gamergdlag1
: 1515414017:0;pacaur -Ss gmail
: 1515414028:0;get checkgmail
: 1515414062:0;get perl-gtk2-sexy
: 1515414089:0;checkgmail
: 1515414190:0;huh craigslist
: 1515414197:0;huh hookup
: 1515414200:0;huh fuck
: 1515414208:0;huh sex
: 1515414220:0;huh tinder
: 1515414262:0;get qgmailnotifier-git
: 1515414339:0;pkill checkgmail
: 1515414379:0;qgmailnotifier --help
: 1515414406:0;pacaur -R qgmailnotifier
: 1515414422:0;pacaur -S qgmailnotifier-git
: 1515414479:0;pacaur -Si qgmailnotifier-git
: 1515414549:0;pkill qgmailnotifier
: 1515414561:0;qgmailnotifier
: 1515414577:0;pacaur -R qgmailnotifier-git
: 1515414634:0;pacaur -S cloudsn
: 1515414660:0;pacaur -S python2-feedparser gstreamer0.10-python
: 1515414942:0;cloudsn
: 1515414986:0;ls .umpv_fifo
: 1515414990:0;vim .umpv_fifo
: 1515415210:0;setxkbmap -option ctrl:swap_rwin_rctrl
: 1515415242:0;setxkbmap -option ctrl:swap_lwin_lctrl
: 1515415280:0;setxkbmap -option ctrl:lctrl_meta
: 1515415886:0;huh mouse
: 1515415899:0;huh mouse map es
: 1515415913:0;huh mouse key es
: 1515416016:0;pacaur -Ss xbindkeys
: 1515416021:0;pacaur -S xbindkeys
: 1515416035:0;pacaur -S xbindkeys xbindkeys_config-gtk2
: 1515416228:0;pacaur -Ss xdg
: 1515416366:0;get xdg-utils-gitwhippet archlinux-menus archlinux-xdg-menu
: 1515416374:0;pacaur -Ss mime
: 1515416378:0;get xdg-utils-git whippet archlinux-menus archlinux-xdg-menu
: 1515416486:0;get dg-utils-git
: 1515416515:0;get mime-archpkg
: 1515416518:0;huh default es
: 1515416551:0;xdg_menu
: 1515416563:0;xdg-settings
: 1515416596:0;huh xdg editor
: 1515416601:0;huh xdg
: 1515416617:0;huh xdg
: 1515416638:0;huh mime es
: 1515416653:0;mime-editor
: 1515416724:0;xdg-open
: 1515416725:0;xdg-mime
: 1515416732:0;xdg-settings --help
: 1515416739:0;man xdg-settings
: 1515416760:0;xdg-settings get
: 1515416763:0;xdg-settings get all
: 1515416768:0;xdg-settings get browser
: 1515416805:0;huh xdg | settings
: 1515416810:0;huh xdg es
: 1515416871:0;man xdg
: 1515416882:0;whippet
: 1515418017:0;vysor
: 1515418021:0;huh vysor
: 1515418527:0;get vysor
: 1515418533:0;huh play store es
: 1515418548:0;huh google es
: 1515418631:0;pacaur -Ss gplaycli
: 1515418641:0;get gplaycli
: 1515418674:0;huh mopidy
: 1515418890:0;pacaur -S archon
: 1515418929:0;pacaur -Si archon-exec
: 1515418935:0;pacaur -Si archon
: 1515418946:0;yaourt -S archon
: 1515419051:0;huh inox
: 1515419404:0;pacaur -Ss alexa
: 1515419503:0;pacaur -Ss cloud
: 1515419510:0;huh cloud es
: 1515419786:0;huh retawq
: 1515419792:0;get retawq
: 1515419825:0;huh edbrowse
: 1515419833:0;get edbrowse
: 1515419842:0;yaourt -S retawq
: 1515419900:0;git clones https://aur.archlinu.org/retawq.git
: 1515419909:0;git clone https://aur.archlinu.org/retawq.git
: 1515419928:0;git clone https://aur.archlinux.org/retawq.git
: 1515420031:0;trizen -Si retawq
: 1515420038:0;trizen -C retawq
: 1515420107:0;vim src/retawq/updatedbuild
: 1515420125:0;trizen -C retawq > src/retawq/updatedbuild
: 1515420128:0;trizen -C retawq | less
: 1515420232:0;vim PKGBUILD.old PKGBUILD
: 1515420248:0;vim -p PKGBUILD.old PKGBUILD
: 1515420323:0;sudo chown -R nikd ../retawq/
: 1515420359:0;sudo chmod 777 /
: 1515420376:0;sudo chmod -R 777 ../
: 1515420393:0;trizen -C retawq
: 1515420421:0;sudo vim PKGBUILD
: 1515420436:0;sudo makepkg -cis
: 1515420519:0;trizen -Si retawq
: 1515420602:0;vim -o PKGBUILD PKGBUILD.old
: 1515420657:0;sudo makepkg -cisp PKGBUILD.old
: 1515421182:0;cd src/retawq
: 1515421184:0;makepkg -cisp PKGBUILD.old
: 1515421420:0;cd pkg
: 1515421432:0;rmdir pkg
: 1515423291:0;rm known_hosts
: 1515425279:0;huh note syn
: 1515425281:0;huh note sync
: 1515425286:0;huh note sync es
: 1515425327:0;why nvpy
: 1515425332:0;what nvpy
: 1515425354:0;why nvpy-git
: 1515425419:0;pacman -Sl aur
: 1515425434:0;pacaur -Sl aur
: 1515425460:0;paclist aur
: 1515425471:0;paccaur -Ss aur
: 1515425481:0;pacaur -Ss .aur list
: 1515425488:0;pacaur -Ss aur list
: 1515425527:0;huh aur list es
: 1515425683:0;pkill blue
: 1515425690:0;pkill blueshift
: 1515425694:0;blueshift -t
: 1515425710:0;blueshift --reset
: 1515425833:0;pacaur -S pug
: 1515425894:0;pug --help
: 1515425901:0;pacaur -Si pug
: 1515425931:0;pacaur -Si gist
: 1515425944:0;pacaur -Ss gist
: 1515426056:0;pacaur -Ss keyring
: 1515426084:0;gist
: 1515426173:0;git clone src
: 1515426187:0;git clone <script src="https://gist.github.com/librepunk/0d6728e84d1df3239aa7d6a7e6cdec68.js"></script>
: 1515426206:0;<script src="https://gist.github.com/librepunk/0d6728e84d1df3239aa7d6a7e6cdec68.js"></script>
: 1515426223:0;java <script src="https://gist.github.com/librepunk/0d6728e84d1df3239aa7d6a7e6cdec68.js"></script>
: 1515426246:0;git clone https://gist.github.com/0d6728e84d1df3239aa7d6a7e6cdec68.git
: 1515426256:0;cd 0d6728e84d1df3239aa7d6a7e6cdec68
: 1515426263:0;vim aur-list.pkg
: 1515426274:0;pacaur -s
: 1515426276:0;pacaur -s a
: 1515426284:0;pacaur -Ssl
: 1515426286:0;pacaur -Sl
: 1515426905:0;cd src/ && cit
: 1515426917:0;cd src/ && git cloen https://aur.archlinux.org/packages/google-chrome.git
: 1515427114:0;git clone aur.archlinux.org/qutebrowser.git
: 1515427120:0;git clone https://aur.archlinux.org/qutebrowser.git
: 1515427687:0;cd retawq
: 1515427897:0;wget ftp://ftp.sourceforge.net/pub/sourceforge/r/re/retawq/retawq-0.2.6c.tar.gz
: 1515427904:0;curl ftp://ftp.sourceforge.net/pub/sourceforge/r/re/retawq/retawq-0.2.6c.tar.gz
: 1515427907:0;aria2c ftp://ftp.sourceforge.net/pub/sourceforge/r/re/retawq/retawq-0.2.6c.tar.gz
: 1515427994:0;html http://retawq.sourceforge.net/docu/index.html -o Documents/retawq
: 1515428004:0;http http://retawq.sourceforge.net/docu/index.html -o Documents/retawq
: 1515428029:0;huh netrix
: 1515428031:0;huh netrik
: 1515428038:0;get netrix
: 1515428143:0;get netrik
: 1515428151:0;huh dehtml
: 1515428177:0;get dehtml
: 1515430746:0;vim .config/mpv
: 1515437311:0;cd .local/share/qutebrowser
: 1515437330:0;vim view_in_mpv
: 1515437453:0;get vimb-git
: 1515437467:0;yaourt -S vimb-git
: 1515437686:0;get vimb
: 1515437692:0;yaourt -S vimb
: 1515437725:0;git clone http://www.hdporzo.com/\?t\=6000
: 1515437807:0;git clone git://github.com/fanglingsu/vimb.git
: 1515437829:0;vim config.mk
: 1515438096:0;ls -rR
: 1515438381:0;cd src/vimb
: 1515438405:0;make V=1
: 1515438607:0;cd src/vimb/src/scripts
: 1515440948:0;i3-style list
: 1515440974:0;i3-style -h
: 1515441043:0;pacaur -R i3-style
: 1515441083:0;git clone https://github.com/acrisci/i3-style
: 1515441112:0;npm install -g i3-style
: 1515441119:0;sudo npm install -g i3-style
: 1515441125:0;i3-styel
: 1515441127:0;i3-style
: 1515441130:0;i3-style -l
: 1515441152:0;cd i3-style
: 1515441199:0;mkdir Themes
: 1515441202:0;cd Themes
: 1515441231:0;cp ~/src/i3-style/themes/* ./
: 1515441259:0;i3-style ./alphare -o ~/.config/i3/config archlinux -r
: 1515441283:0;i3-style -o ~/.config/i3/config archlinux -r archlinux
: 1515441330:0;alias istyle="i3-style -o ~/.config/i3/config -r"
: 1515441341:0;istyle archlinux
: 1515441343:0;istyle base16-tomorrow
: 1515441349:0;istyle base16-tomorrow debian
: 1515441373:0;istyle deep-purple
: 1515441378:0;istyle default
: 1515441383:0;istyle flat-gray
: 1515441391:0;istyle icelines
: 1515441396:0;istyle lime
: 1515441412:0;istyle mate
: 1515441417:0;istyle okraits
: 1515441421:0;istyle purple
: 1515441424:0;istyle
: 1515441433:0;istyle tomorrow-night-80s
: 1515441440:0;istyle tomorrow-night-ub
: 1515441443:0;istyle ubuntu
: 1515441449:0;istyle debian
: 1515441461:0;istyle seti
: 1515441499:0;vim *
: 1515441542:0;vim ./*
: 1515441652:0;istyle gruvbox
: 1515441673:0;vim solarized
: 1515441729:0;huh color
: 1515441763:0;huh color code es
: 1515441776:0;huh color es
: 1515441888:0;get gpick
: 1515441946:0;get gcolor2
: 1515442065:0;istyle solarized
: 1515442772:0;hav email
: 1515442846:0;aerc --help
: 1515442850:0;aerc --man
: 1515442852:0;aerc -h
: 1515442857:0;info aerc
: 1515442942:0;aerc-protocol
: 1515443200:0;tricen -C aerc
: 1515443207:0;trizen -C aerc
: 1515443210:0;trizen -C aerc-git
: 1515443397:0;vim -o .config/aerc/*
: 1515443568:0;vim -o .mutt
: 1515443576:0;vim -o .mutt/*
: 1515443950:0;yaourt -S sup-git
: 1515444037:0;git clone https://github.com/sup-heliotrope/sup
: 1515444048:0;cd sup
: 1515444162:0;cd src/sup
: 1515444164:0;gem install xapian-ruby
: 1515444206:0;get bower-mail
: 1515444489:0;mv style.css.hide style.css
: 1515444551:0;vim scripts.js
: 1515444556:0;rm scripts.js
: 1515444559:0;rm pirate-clean.js
: 1515445562:0;huh dbrowser
: 1515446194:0;hav i3
: 1515446232:0;get i3-battery-nagbar
: 1515446255:0;yaourt -S i3-battery-nagbar
: 1515446362:0;why i3-battery-nagbar
: 1515446633:0;huh tk
: 1515446740:0;i3-battery-nagbar --help
: 1515446755:0;i3-battery-nagbar
: 1515446803:0;i3-battery-popup -t 5s -n
: 1515446818:0;i3-battery-popup -t 5s -N&
: 1515446847:0;pkill i3-battery-popu
: 1515446863:0;i3-battery-popup -t 5s -N -L 20
: 1515446877:0;i3-battery-popup -t 5s -N -L20
: 1515446893:0;i3-battery-popup -t 5s -N -L 40
: 1515446993:0;hav amixer
: 1515447028:0;pulsemixer --toggle-mute
: 1515447307:0;xev | grep xf86
: 1515447417:0;xev | grep 86
: 1515447422:0;vim umpv
: 1515447435:0;echo "pause" ~/.umpv_fifo
: 1515447460:0;echo "PAUSE" ~/.umpv_fifo
: 1515447834:0;pulsemixer --help | less
: 1515447867:0;pulsemixer --change-volume -10
: 1515447942:0;huh mixer es
: 1515447956:0;pacaur -Ss cli pulse
: 1515447968:0;pacaur -Si ponymixer
: 1515447972:0;pacaur -Si ponymix
: 1515447998:0;get ponymix-git
: 1515448055:0;pacaur -Ss pop up
: 1515448095:0;huh pop up es
: 1515448137:0;vim /usr/bin/i3-battery-
: 1515448141:0;vim /usr/bin/i3-battery-popup
: 1515448185:0;i3-battery-popup -t 5s-L 100
: 1515448189:0;i3-battery-popup -t 5s -L 100
: 1515448218:0;i3-battery-popup
: 1515448320:0;huh wish
: 1515448324:0;huh tck
: 1515448415:0;huh i3 es
: 1515448588:0;pacaur -Si konbini3
: 1515448601:0;pacaur -R konbini3
: 1515448608:0;get i3lock-color-git py3status
: 1515448668:0;sup-config
: 1515448885:0;vim .config/aerc
: 1515449160:0;aerc-imap
: 1515449195:0;man aerc
: 1515449469:0;huh lumail
: 1515449560:0;get lumail2
: 1515449687:0;huh mail
: 1515449688:0;get alpine-git
: 1515449752:0;man lumail
: 1515449757:0;lumail --help
: 1515449761:0;mkdir .config/lumail
: 1515449773:0;cp /etc/lumail/lumail.lua .config/lumail/
: 1515449778:0;vim .config/lu
: 1515449782:0;vim .config/lumail/lumail.lua
: 1515449882:0;ls .config/lumail
: 1515449938:0;cd .config/lumail
: 1515449951:0;mv lumail/ ~/.lumail
: 1515449957:0;cd .lumail
: 1515449966:0;mkdir hide
: 1515449972:0;mv hide .hide
: 1515449978:0;mv * .hide/
: 1515450016:0;w3m -dump https://raw.githubusercontent.com/lumail/lumail/master/user.config.lua > nikd.lua
: 1515450019:0;vim lin
: 1515450023:0;vim nikd.lua
: 1515450039:0;mv nikd.lua lumail.
: 1515450044:0;mv lumail. lumail.lua
: 1515450086:0;mv lumail. lumail.lua
: 1515450088:0;vim lumail.lua
: 1515450316:0;man alpine
: 1515450452:0;cd .mutt
: 1515450465:0;mkdir backups
: 1515450466:0;mv * ./backups
: 1515450473:0;man mutt
: 1515450637:0;cd .config/neomuttrc
: 1515450674:0;mv neomuttrc/ ~/.neomutt
: 1515450677:0;cd ~?.neo
: 1515450684:0;cd ~/.neomutt/
: 1515450690:0;ls backups
: 1515450726:0;cd backups
: 1515450736:0;cat * >> all.txt
: 1515450737:0;vim all.txt
: 1515450747:0;rm all.txt
: 1515450767:0;mv muttrc 1muttrc
: 1515450779:0;rm !
: 1515450781:0;rm ~
: 1515450787:0;rm *~
: 1515450809:0;mv neomuttrc ../neomuttrc.example
: 1515450823:0;mv 1muttrc .muttrc
: 1515450828:0;cat * >> all
: 1515450829:0;vim all
: 1515450844:0;mv .muttrc muttrc
: 1515450904:0;alaisvi
: 1515450907:0;alais-vi
: 1515451760:0;vim Downloads/HTTP/myapplist-backup.txt
: 1515451870:0;zshvi i
: 1515451946:0;hav drive
: 1515451950:0;hav drive google
: 1515451954:0;skicka list
: 1515452057:0;vim sms=_=06502bbac8c24c2cbffcd421ca534c8d=_=+16619649468
: 1515452104:0;c dBa
: 1515452110:0;cd PixelShit
: 1515452112:0;cd SmsContactsBackup
: 1515452114:0;cd sms
: 1515452125:0;huh xml
: 1515452132:0;vim sms_20180106212856.xml
: 1515452619:0;systemctl restart sshd.service
: 1515452654:0;rm known_hosts.old
: 1515452694:0;ls authorized_keys
: 1515452708:0;rm authorized_keys
: 1515452788:0;ls -aR | grep sshd
: 1515452792:0;cd pam.d
: 1515452908:0;nmap
: 1515452973:0;ssh myphone@100.107.218.208 -p 2222
: 1515453317:0;systemctl reset-failed
: 1515453320:0;sudo systemctl reset-failed
: 1515453670:0;systemctl disable sshd.service
: 1515453691:0;sudo systemctl start sshd.socket sshd@
: 1515453696:0;sudo systemctl start sshd.socket
: 1515453709:0;systemctl status sshd@2.service
: 1515453736:0;pacaur -R sshd
: 1515453739:0;pacaur -Ss sshd
: 1515453763:0;pacaur -S ssh server
: 1515453773:0;pacaur -Ss ssh server
: 1515453790:0;pacaur -S openssh-hpn-git
: 1515453852:0;huh mosh
: 1515453865:0;mosh-server
: 1515453971:0;systemctl enable sshd
: 1515453984:0;sudo systemctl enable sshd@
: 1515453990:0;sudo systemctl enable sshd@service
: 1515454073:0;man mosh-server
: 1515454100:0;utmpdump
: 1515454154:0;port4
: 1515454156:0;port
: 1515454161:0;huh port
: 1515454225:0;wifi-status
: 1515454317:0;mv style.css backup.style
: 1515454432:0;nmap localhost
: 1515454459:0;nmap arch-omen.localdomain
: 1515454465:0;nmap localhost.localdomain
: 1515454555:0;pacaur -R vimb-git
: 1515454609:0;vimb --help
: 1515454619:0;vimb -bug-info
: 1515454633:0;vimb --help-all
: 1515454727:0;sr S duck duck go minimal
: 1515454890:0;sudo systemctl kill shd
: 1515454929:0;sudo systemctl disable sshd.service sshd.socket
: 1515454943:0;pacaur -R openssh-hpn-git
: 1515454951:0;pacaur -Ss ssh'
: 1515454954:0;pacaur -Ss ssh
: 1515454972:0;huh ssh es
: 1515455106:0;get openssh-git
: 1515455143:0;yaourt -S openssh-git
: 1515455213:0;yaourt -S openss
: 1515455215:0;yaourt -S openssh
: 1515457268:0;adb shell pm grant com.zacharee1.systemuituner android.permission.WRITE_SECURE_SETTINGS
: 1515457673:0;wyeb
: 1515457738:0;pacaur -Ss webkit
: 1515457756:0;pacaur -Ss webview
: 1515457952:0;h | grep loc
: 1515457970:0;whence es
: 1515457974:0;whatis es
: 1515458029:0;h | less -R +g
: 1515458037:0;h | less -R +G
: 1515458109:0;journalctl -fb -p 4 --no-tail --follow
: 1515458177:0;man journal
: 1515458183:0;journalctl help
: 1515458327:0;WebKitWebDriver
: 1515458329:0;webengine_
: 1515458408:0;pacaur -Qs
: 1515458410:0;pacaur -Qs web
: 1515458418:0;hav web es
: 1515458510:0;journalctl -fb -p 4 --follow --o less -R
: 1515458619:0;journalctl -p 4 -b --pager-end --no-pager
: 1515458625:0;journalctl -p 4 -b --pager-end --no-pager | less -R
: 1515458650:0;man journalctl l
: 1515458722:0;huh journal pager eh
: 1515458727:0;huh journal eh
: 1515458734:0;huh journal
: 1515458740:0;huh journal pager es
: 1515459152:0;huh journal pager
: 1515459156:0;huh journal es
: 1515459259:0;huh journalctl es
: 1515459271:0;sr S journalctl alternatives
: 1515459355:0;journalctl -