-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zsh_history
10045 lines (10020 loc) · 280 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
: 1631492617:0;sudo pacman -S zsh
: 1631492639:0;zsh
: 1631492698:0;sudo chsh -s $(which zsh)
: 1631495319:0;cp -r polybar ~/.config
: 1631495347:0;cd pol
: 1631496484:0;chmod +x bspwmrc
: 1631496563:0;vim dunstrc
: 1631497890:0;vim bspwmrc
: 1631497929:0;sudo pacman -S feh
: 1631498299:0;cd Downloads/Fonts/Iosevka
: 1631498332:0;sudo mv Iosevka-* ~/.local/share/fonts
: 1631498338:0;sudo mv Iosevka* ~/.local/share/fonts
: 1631498498:0;fc-list | grep 'Iosevka Nerd'
: 1631498746:0;cd Downloads/material-design-icons/font
: 1631499079:0;sudo mv robbyrussell.zsh-theme ~/.oh-my-zsh/themes
: 1631499086:0;sudo mv ar-round.zsh-theme ~/.oh-my-zsh/themes
: 1631499429:0;sudo pacman -S w3m
: 1631500099:0;git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting\
: 1631500410:0;curl -O https://download.sublimetext.com/sublimehq-pub.gpg && sudo pacman-key --add sublimehq-pub.gpg && sudo pacman-key --lsign-key 8A8F901A && rm sublimehq-pub.gpg
: 1631500427:0;echo -e "\n[sublime-text]\nServer = https://download.sublimetext.com/arch/stable/x86_64" | sudo tee -a /etc/pacman.conf
: 1631500444:0;sudo pacman -Syu sublime-text
: 1631501158:0;sudo pacman -S meson
: 1631501345:0;dbus-devel gcc git libconfig-devel libdrm-devel libev-devel libX11-devel libX11-xcb libXext-devel libxcb-devel mesa-libGL-devel meson pcre-devel pixman-devel uthash-devel xcb-util-image-devel xcb-util-renderutil-devel xorg-x11-proto-devel\
: 1631501356:0;libxext-dev libxcb1-dev libxcb-damage0-dev libxcb-xfixes0-dev libxcb-shape0-dev libxcb-render-util0-dev libxcb-render0-dev libxcb-randr0-dev libxcb-composite0-dev libxcb-image0-dev libxcb-present-dev libxcb-xinerama0-dev libxcb-glx0-dev libpixman-1-dev libdbus-1-dev libconfig-dev libgl1-mesa-dev libpcre2-dev libpcre3-dev libevdev-dev uthash-dev libev-dev libx11-xcb-dev\
: 1631501400:0;sudo pacman -S ninja
: 1631501488:0;sudo pacman -S uthash
: 1631501507:0;meson --buildtype=release . build && ninja -C build
: 1631501686:0;git clone https://github.com/alexanderjeurissen/ranger_devicons ~/.config/ranger/plugins/ranger_devicons\
: 1631501710:0;echo "default_linemode devicons" >> $HOME/.config/ranger/rc.conf
: 1631501762:0;sudo pacman -S caa
: 1631501915:0;sudo yay -S cava
: 1631502006:0;sudo pacman -S cava
: 1631502031:0;sudo pacman -S htop
: 1631502046:0;sudo yay -S gotop
: 1631502247:0;sudo rm -rf build
: 1631502274:0;git clone https://aur.archlinux.org/cava.git
: 1631502284:0;cd cava
: 1631502336:0;qcd
: 1631502370:0;git clone https://aur.archlinux.org/gotop.git
: 1631502380:0;cd gotop
: 1631502827:0;git clone https://aur.archlinux.org/ttf-material-design-icons.git
: 1631503828:0;cd Downloads/Fonts/JetBrainsMono
: 1631503846:0;sudo mv JetBrains* ~/.local/share/fonts
: 1631504029:0;git clone https://github.com/bandithijo/JetBrainsMonoNerdFontCompleteBandit-Medium
: 1631504038:0;cd JetBrainsMonoNerdFontCompleteBandit-Medium
: 1631504064:0;sudo mv JetBrainsMonoNerdFontCompleteBandit-Medium.ttf /usr/share/fonts
: 1631504088:0;sudo fc-cache -vf
: 1631505048:0;sudo rm -rf rofi/
: 1631505255:0;git clone $ git clone --depth=1 https://github.com/adi1090x/rofi.git\
: 1631505270:0;git clone --depth=1 https://github.com/adi1090x/rofi.git\
: 1631505408:0;vim ~/.config/sxhkd/sxhkdrc
: 1631505452:0;sudo pacman -S gimp
: 1631505546:0;sudo pacman -S inkscape
: 1631505660:0;sudo yay -S krita
: 1631507408:0;git clone https://aur.archlinux.org/ttf-icomoon-feather.git
: 1631507418:0;cd ttf-icomoon-feather
: 1631507496:0;fc-list | grep 'Feather'
: 1631507510:0;fc-list | grep 'Iosevka Nerd Font'
: 1631507539:0;fc-list | grep 'Material Icons'
: 1631511793:0;sudo yay -S firefox
: 1631512382:0;sudo pacman -S tree
: 1631512410:0;sudo yay -S exa
: 1631512467:0;sudo pacman -S zoom
: 1631512479:0;sudo yay -S zoom
: 1631513202:0;git clone --depth=1 https://github.com/adi1090x/polybar-themes.git
: 1631513252:0;chmod +x setup.sh
: 1631513262:0;./setup.sh
: 1631513378:0;cd ~/.config/polybar/shapes/scripts
: 1631513939:0;vim colors.ini
: 1631515606:0;tree ~/Pictures
: 1631515673:0;vim ~/.config/polybar/shapes/colors.ini
: 1631524846:0;which picom
: 1631525519:0;sudo jfetch
: 1631525888:0;chmod +x checkupdates
: 1631526356:0;clea
: 1631526616:0;cler
: 1631526624:0;sudo pacman -S shadowsocksr-libev
: 1631526633:0;sudo yay -S shadowsocksr-libev
: 1631526855:0;sudo pacman -S libev
: 1631526863:0;sudo pacman -S libev-dev
: 1631526879:0;sudo yay -S libev-dev
: 1631526889:0;cd Downloads/picom
: 1631526930:0;sudo pacman -S libconfig
: 1631527011:0;sudo pacman -Rns picom
: 1631527174:0;git clone https://github.com/yshui/picom
: 1631527272:0;sudo pacman -S picom
: 1631527599:0;sudo mv ~/.ncmpcpp ~/Backup
: 1631527608:0;sudo mv ~/.mpd ~/Backup
: 1631527614:0;sudo mv ~/.wallpaper ~/Backup
: 1631527620:0;sudo mv ~/.icons ~/Backup
: 1631527639:0;sudo mv ~/.Xdefaults ~/Backup
: 1631527643:0;sudo mv ~/.Xresources ~/Backup
: 1631527649:0;sudo mv ~/.zshrc ~/Backup
: 1631527957:0;cp -r .Xdefaults ~
: 1631528032:0;sudo pacman -S --needed base-devel
: 1631528056:0;git clone https://aur.archlinux.org/paru.git
: 1631528071:0;cd paru
: 1631529086:0;paru -S rsync python psmisc xorg-xprop xorg-xwininfo imagemagick ffmpeg wireless_tools openbox \\
pulseaudio pulseaudio-alsa alsa-utils brightnessctl nitrogen dunst tint2 gsimplecal rofi \\
qt5-styleplugins lxsession xautolock rxvt-unicode-truecolor-wide-glyphs xclip scrot thunar \\
thunar-archive-plugin thunar-volman ffmpegthumbnailer tumbler viewnior mpv mpd mpc ncmpcpp \\
pavucontrol parcellite neofetch w3m htop picom-git obmenu-generator perl-gtk3 playerctl xsettingsd
: 1631529339:0;git clone --depth 1 https://github.com/owl4ce/dotfiles.git
: 1631529399:0;rsync -avxHAXP --exclude '.git*' --exclude 'LICENSE' --exclude '*.md' dotfiles/ ~/
: 1631530466:0;sudo shutdown now
: 1631535780:0;cd Downloads
: 1631535786:0;git clone https://github.com/Regalkun/DotFiles1
: 1631535872:0;cp -r neofetch ~/.config
: 1631537664:0;fc-list | grep 'AurulenSans'
: 1631537683:0;fc-list | grep 'AurulentSans'
: 1631538963:0;cd Downloads/Fonts/DejaVuSansMono
: 1631538982:0;sudo mv Dejavu* ~/.local/share/fonts
: 1631538999:0;sudo mv 'Dejavu'* ~/.local/share/fonts
: 1631539017:0;sudo mv DejaVu* ~/.local/share/fonts
: 1631539057:0;cd Meslo
: 1631539071:0;sudo mv Mesol* ~/.local/share/fonts
: 1631539077:0;sudo mv Meslo* ~/.local/share/fonts
: 1631539112:0;sudo mv Shure* ~/.local/share/fonts
: 1631539137:0;sudo mv Ubuntu* ~/.local/share/fonts
: 1631539167:0;fc-list | grep 'Meslo'
: 1631539179:0;fc-list | grep 'DejaVu'
: 1631539186:0;fc-list | grep 'Ubuntu'
: 1631539447:0;sudo pacman -S ttf-dejavu ttf-liberation noto-fonts noto-fonts-emoji inter-font ttf-roboto
: 1631539495:0;sudo pacman -S Material-Design-Icons
: 1631539755:0;git clone https://github.com/google/material-design-icons
: 1631540540:0;cd ttf-material-design-icons
: 1631540576:0;tar xvf ttf-material-design-icons-4.0.0.tar.gz
: 1631541525:0;cd material-design-icons
: 1631543678:0;sudo mv MaterialIcons-Regular.ttf ~/.local/share/fonts
: 1631544102:0;ttf-material-design-icons
: 1631544107:0;cd material-design-icons-4.0.0
: 1631544113:0;cd font
: 1631544415:0;sudo mv Material* ~/.local/share/fonts
: 1631544722:0;cd TTF
: 1631544790:0;sudo mv Aurulent* /usr/share/font
: 1631544804:0;sudo mv Aurulent* /usr/share/fonts
: 1631544825:0;sudo mv DejaVu* /usr/share/font
: 1631544829:0;sudo mv DejaVu* /usr/share/fonts
: 1631544857:0;sudo mv Iosevka* /usr/share/fonts
: 1631544881:0;sudo mv Meslo* /usr/share/fonts
: 1631544912:0;sudo mv JetBrains* /usr/share/fonts
: 1631544924:0;sudo mv Ubuntu* /usr/share/fonts
: 1631544937:0;sudo mv Fantasque-Sans-Mono-Nerd-Font.ttf /usr/share/fonts
: 1631544946:0;sudo mv fantasque_sans_mono.ttf /usr/share/fonts
: 1631544958:0;sudo mv Feather.ttf /usr/share/fonts
: 1631544963:0;sudo mv feather.ttf /usr/share/fonts
: 1631544972:0;sudo mv Shure\ Tech\ Mono\ Nerd\ Font\ Complete.ttf /usr/share/fonts
: 1631544987:0;sudo mv Shure* /usr/share/fonts
: 1631544997:0;sudo mv Material* /usr/share/fonts
: 1631545011:0;sudo mv Hurmit-Nerd-Font-Mono.otf /usr/share/fonst
: 1631545020:0;sudo mv Hurmit-Nerd-Font-Mono.otf /usr/share/fonts
: 1631545045:0;sudo mv iosevka_nerd_font.ttf /usr/share/fonts
: 1631545053:0;sudo mv material_design_iconic_font.ttf /usr/share/fonts
: 1631545068:0;cd /usr/share/font
: 1631545070:0;cd /usr/share/fonts
: 1631545094:0;sudo rm -rf fonst
: 1631545395:0;sudo pacman -S kcharselect
: 1631545833:0;sudo pacman -Rns kcharselect
: 1631545855:0;sudo pacman -Rns krita-appimage
: 1631607445:0;fc-list | grep 'MesloLGMDZ'
: 1631609240:0;vim config.ini
: 1631609959:0;fc-list | 'Material Design Iconic Font'
: 1631609967:0;fc-list | grep 'Material Design Iconic Font'
: 1631610847:0;sudo yay -S picom-tryone-git
: 1631610975:0;cd ~/,con
: 1631610998:0;vim picom.conf
: 1631611850:0;notify-send hello
: 1631611891:0;cp -r dunst ~/Backup
: 1631611903:0;chmod +x dunstrc
: 1631612086:0;which dunstrc
: 1631612103:0;sudo mv dunst
: 1631612107:0;sudo mv dunst ~/.config
: 1631614557:0;which polybar
: 1631615157:0;lear
: 1631617060:0;fc-list | grep 'JetBrains Bandit'
: 1631617321:0;vim ~/.config/polybar/shapes/glyphs.ini
: 1631617401:0;cleae
: 1631670373:0;~/.config/polybar/shapes/scripts/style-switch.sh
: 1631670399:0;./style-switch.sh
: 1631670445:0;cd Dot
: 1631670472:0;cd the
: 1631670577:0;cd script
: 1631670579:0;cd 4fun
: 1631670600:0;cp -r sh* ~/.local/bin
: 1631670630:0;cp -r color* ~/.local/bin
: 1631670674:0;sudo rm -rf color*
: 1631670688:0;chmod +x pipes.sh
: 1631670704:0;cd ~/Downloads/DotFiles1/script/4fun
: 1631670732:0;grep 'color'
: 1631670773:0;sudo rm -rf colorblocks.sh
: 1631670784:0;sudo rm -rf colorpanes.sh
: 1631670790:0;sudo rm -rf colorblocks2.sh
: 1631670794:0;sudo rm -rf colorpanes-slim.sh
: 1631670799:0;sudo rm -rf colorsbar.sh
: 1631670807:0;sudo rm -rf color.sh
: 1631670813:0;sudo rm -rf colortest-8
: 1631670817:0;sudo rm -rf colortest-slim.sh
: 1631670835:0;sudo rm -rf dna.sh
: 1631670842:0;sudo rm -rf ghost.sh
: 1631670853:0;sudo rm -rf jfetch
: 1631670866:0;sudo rm -rf pacman.sh
: 1631670875:0;sudo rm -rf pipes.sh
: 1631670880:0;sudo rm -rf pipes-slim.sh
: 1631670888:0;sudo rm -rf pipesx.sh
: 1631670894:0;sudo rm -rf rains.sh
: 1631670903:0;sudo rm -rf spacey.sh
: 1631670920:0;chmod +x color*
: 1631670935:0;chmod +x dna.sh
: 1631670939:0;chmod +x ghost.sh
: 1631670943:0;chmod +x jfetch
: 1631670950:0;chmod +x pacman.sh
: 1631670955:0;chmod +x pipes*
: 1631670965:0;chmod +x rains.sh
: 1631670968:0;chmod +x rxfetch
: 1631670972:0;chmod +x spacey.sh
: 1631670991:0;sudo mv color* /usr/bin
: 1631671030:0;sudo mv pipes* /usr/bin
: 1631671038:0;sudo mv dna.sh /usr/bin
: 1631671048:0;sudo mv ghost.sh /usr/bin
: 1631671061:0;sudo mv pacman.sh /usr/bin
: 1631671067:0;sudo mv rains.sh /usr/bin
: 1631671072:0;sudo mv rxfetch /usr/bin
: 1631671078:0;sudo mv spacey.sh /usr/bin
: 1631671196:0;colors
: 1631671202:0;color.sh
: 1631671211:0;colorsbar.sh
: 1631671368:0;clearr
: 1631671484:0;sudo pacman -S mpc
: 1631671504:0;sudo pacman -S mpv
: 1631671532:0;sudo yay -S mpc
: 1631672652:0;c;ear
: 1631673184:0;sudo mv ~/.config/polybar ~/Backup
: 1631673248:0;chmod +x fix_modules.sh
: 1631673262:0;cd finx
: 1631673282:0;chmod +x launcher
: 1631673292:0;chmod +x powermenu
: 1631673538:0;fc-list | grep 'JetBrainsMono Nerd Font Bandit'
: 1631674324:0;sudo mv polybar3 ~/Backup
: 1631778250:0;sudo pacman -S pfetch
: 1631778595:0;sudo pacman -S handbreak
: 1631778604:0;sudo yay -S handbreak
: 1631778693:0;vim ~/Backup/polybar1/shapes
: 1631778705:0;vim ~/Backup/polybar1/shapes/config.ini
: 1631784310:0;cd RegalFiles/Wallpaper
: 1631785182:0;cd ~/.wallpaper/anime
: 1631786417:0;~/.config/polybar/launch.sh --colorblocks
: 1631786447:0;~/.config/polybar/launch.sh --bloacks
: 1631786451:0;~/.config/polybar/launch.sh --blocks
: 1631786469:0;~/.config/polybar/launch.sh --material
: 1631788938:0;vim /usr/bin/jfetch
: 1631789878:0;shutdown now
: 1631791586:0;git clone https://github.com/dylanaraps/pfetch
: 1631791696:0;hostname Artix
: 1631791709:0;sethostname Artix
: 1631791721:0;sudo hostname ARtix
: 1631791748:0;cd ~/Downloads/pfetch
: 1631791751:0;./pfetch
: 1631791764:0;cd pfetch
: 1631791775:0;cp -r pfetch /usr/bin/
: 1631791780:0;sudo cp -r pfetch /usr/bin/
: 1631793767:0;tar xvf Future-dark-cursors.tar.gz
: 1631793784:0;sudo mv Future-dark-cursors Icons
: 1631793812:0;sudo mv Future-dark-cursors /usr/share/icons
: 1631793834:0;vim ~/.icons/default/index.theme
: 1631793894:0;exit
: 1631848272:0;~/.config/polybar/launch.sh --forest
: 1631848737:0;fc-list | grep 'Material Design'
: 1631859877:0;vim finx/config.ini
: 1631859886:0;vim finx/modules.ini
: 1631864057:0;sudo hostname Artix
: 1631998790:0;vim modules.ini
: 1631999319:0;sudo pacman -S thunar
: 1632318247:0;sudo mv Papirus-Blue-Dark_20210901.tar.gz Icons
: 1632318262:0;tar xvf Papirus-Blue-Dark_20210901.tar.gz
: 1632318276:0;sudo mv Papirus-Blue-Dark /usr/share/icons
: 1632318905:0;sudo mv Kripton-v40.tar.xz Themes
: 1632318924:0;tar xvf Kripton-v40.tar.xz
: 1632318936:0;sudo mv Kripton-v40 /usr/share/themes
: 1632319585:0;sudo mv Tela-yellow.tar.xz Icons
: 1632319597:0;tar xvf Tela-yellow.tar.xz
: 1632319609:0;sudo mv Tela-yellow /usr/share/icons
: 1632319618:0;sudo mv Tela-yellow-dark /usr/share/icons
: 1632368465:0;cd Downloads/firefox
: 1632368481:0;sudo mv firefox /usr/bin
: 1632368506:0;firefox
: 1632368528:0;sudo mv firefox ~/Downloads/firefox
: 1632369918:0;git clone --depth=1 https://github.com/berthosefin/polybar-themes.git
: 1632369939:0;chmod +x install.sh
: 1632369968:0;sudo rm -rf polybar.old
: 1632370352:0;./neofetch
: 1632378678:0;sudo pacman -S arc-gtk-theme
: 1632379908:0;sudo mv McMuse.tar.xz Icons
: 1632379918:0;sudo mv Nordzy-cursors.tar.gz Icons
: 1632379927:0;tar xvf McMuse.tar.xz
: 1632379935:0;tar xvf Nordzy-cursors.tar.gz
: 1632379953:0;sudo mv McMuse* /usr/share/icons
: 1632379969:0;sudo mv Nordzy-cursors /usr/share/icons
: 1632379983:0;cd /usr/share/icons && ls
: 1632379990:0;sudo rm -rf McMuse.tar.xz
: 1632380066:0;cd Default
: 1632380077:0;cd default
: 1632380507:0;vim /usr/share/icons/default
: 1632380569:0;cd ~/.local/share/icons/
: 1632380589:0;cd share
: 1632380652:0;touch ind
: 1632380659:0;sudo rm -rf ind
: 1632380670:0;touch index.theme
: 1632380682:0;vim /usr/share/icons/default/index.theme
: 1632380697:0;vim index.theme
: 1632380745:0;cd /usr/share/icons/default
: 1632380752:0;sudo rm -rf index.theme
: 1632380768:0;sudo mv index.theme /usr/share/icons/default
: 1632380782:0;cd /usr/share
: 1632381073:0;sudo hostname artix
: 1632634447:0;fc-list | grep 'Material-Design-Iconic-Font'
: 1632639589:0;vim config.conf
: 1632648478:0;sudo rm -rf awesomepanda.zsh-theme
: 1632648494:0;cp -r awesomepanda.zsh-theme ~/.oh-my-zsh/themes
: 1632649221:0;vim ~/.oh-my-zsh/themes/sorin.zsh-theme
: 1632649268:0;cp -r ar-round.zsh-theme ~/.oh-my-zsh/themes
: 1632649494:0;hostname regal
: 1632649504:0;sudo hostname regal
: 1632650339:0;PS1
: 1632650345:0;$PS1
: 1632650570:0;vim host
: 1632650648:0;sudo mv hostname /etc
: 1632650838:0;vim /etc/hostname
: 1632650885:0;sudo hostname set-hostname
: 1632650898:0;avahi-set-host-name
: 1632655159:0;sudo rm -rf polybar1
: 1632656968:0;vim hostname
: 1632656987:0;sudo rm -rf hostname
: 1632657011:0;sudo mv hostname /etc/conf.d
: 1632658157:0;vim ~/Backup/neofetch/config.conf
: 1632658594:0;tty-clock -S -C 4
: 1632658605:0;tty-clock --help
: 1632658635:0;tty-clock -s -C 4
: 1632722436:0;mkdir bundle
: 1632722457:0;git clone https://github.com/vim-airline/vim-airline-themes ~/.vim/bundle/vim-airline-themes
: 1632722564:0;cd ~/.vim/bundle/vim-airline-themes/autoload
: 1632723257:0;cd ~/.c
: 1632723578:0;git clone https://github.com/edkolev/tmuxline.vim ~/.vim/bundle/tmuxline.vim
: 1632723700:0;sudo pacman -S tmux
: 1632723735:0;killall tmux
: 1632727825:0;sudo pacman -S cmatrix
: 1632727843:0;sudo yay -S cmatrix
: 1632728735:0;sudo pacman -S vifm
: 1632728773:0;sudo yay -S vifm
: 1632730047:0;cd /usr/bin | grep 'rxfetch'
: 1632730147:0;git clone https://github.com/mangeshrex/rxfetch
: 1632730350:0;vim rxfetch
: 1632730488:0;./rxfetch
: 1632730506:0;cp -r rxfetch /usr/bin
: 1632730514:0;sudo cp -r rxfetch /usr/bin
: 1632730590:0;colorpanes-slim.sh && rxfetch
: 1632731048:0;sudo yay -S ueberzug
: 1632731122:0;sudo yay -S w3m-img
: 1632731198:0;sudo pacman -S artix-archlinux-support
: 1632731268:0;sudo pacman -Syu artix-archlinux-support
: 1632732079:0;vim /etc/pacman.
: 1632732101:0;pacman-key --populate archlinux
: 1632732138:0;sudo rm -rf pacman.conf
: 1632732350:0;cd /etc
: 1632732367:0;sudo mv pacman.conf ~/Backup
: 1632732398:0;vim pacman.conf
: 1632732457:0;sudo mv pacman.conf /etc
: 1632732471:0;vim /etc/pacman.conf
: 1632732507:0;sudo pacman-key --populate archlinux
: 1632732553:0;sudo pacman -Sy w3m-img
: 1632732665:0;vim deus.vim
: 1632738507:0;git clone [email protected]:powerline/fonts.git
: 1632740488:0;vim plug.vim
: 1632741512:0;cd ..c
: 1632741879:0;mkdir ~/.vim/colors
: 1632742010:0;git clone https://github.com/joshdick/onedark.vim
: 1632742076:0;sudo mv onedark.vim ~/.vim/colors
: 1632742098:0;sudo mv onedark.vim ~/.vim/autoload
: 1632742442:0;vim ~/.vim/colors/onedark.vim
: 1632743005:0;vim ~/.vim/autoload/onedark.vim
: 1632747225:0;vim ~/.local/bin/flameshot-imgck
: 1632755051:0;tmux
: 1632755067:0;exit tmux
: 1632815214:0;vim ~/.config/ranger/rc.conf
: 1632817353:0;git clone https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/AurulentSansMono
: 1632818124:0;cd AurulentSansMono
: 1632818192:0;sudo mv AurulentSansMono* ~/.local/share/fonts
: 1632818324:0;fc-list | grep 'Aurulent
: 1632821520:0;sudo yay -S scrcpy
: 1632821770:0;vim ~/.vim/bundle/vim-airline-themes/autoload/airline/themes/bubblegum.vim
: 1632822043:0;yay scrcpy
: 1632823568:0;lsusb
: 1632824502:0;adb -P
: 1632824991:0;adb
: 1632825135:0;adb devices
: 1632825143:0;scrcpy
: 1632825147:0;adb push
: 1632825153:0;adb push 1
: 1632995052:0;sudo pacman -S exa
: 1632995090:0;exa
: 1632995114:0;which bashrc
: 1632995304:0;vim .b
: 1632995310:0;vim .bashrc
: 1632996014:0;killall git
: 1632996020:0;exit git
: 1632996026:0;~
: 1632996064:0;pwd
: 1632996150:0;sudo pacman -Rsn lazygit
: 1632996291:0;cd regalkun
: 1632996314:0;cd ~/.git
: 1632996794:0;sudo rm -rf ~/.git
: 1632996873:0;sudo pacman -S lazygit
: 1633051649:0;vim neofetch/config.conf
: 1633052416:0;vim ~/.config/neofetch/config.conf
: 1633052951:0;sudo mv neofetch ~/.config
: 1633054475:0;fc-list | grep 'Aurulent'
: 1633054899:0;⮫c
: 1633061074:0;cp ~/.vim/vimrc ~/Backup
: 1633061976:0;sudo pacman -S fzf
: 1633062191:0;sudo pacman -S bat
: 1633062240:0;sudo pacman -S delta
: 1633062279:0;sudo pacman -S the_silver_searcher
: 1633062312:0;sudo pacman -S git-delta
: 1633062376:0;vim ~/.gitconfig
: 1633065055:0;cd ~/.vim/bundle
: 1633065403:0;which fzf
: 1633065408:0;man fzf
: 1633065493:0;cd vim
: 1633065497:0;vim complete.vim
: 1633065509:0;vim vim.vim
: 1633065540:0;cd man
: 1633065543:0;cd man1
: 1633065554:0;vim fzf.1
: 1633066902:0;sudo pacman -S fortune cowsay
: 1633066935:0;cowsay "hello"
: 1633066983:0;pokemonsay Hello World
: 1633067031:0;./pokemonsay.sh Hellow
: 1633067052:0;sudo mv pokemonsay.sh /usr/bin
: 1633067070:0;pokemonsay.sh Tolol
: 1633067102:0;sudo mv /usr/bin/pokemonsay.sh ~/.pokemonsay/
: 1633067173:0;cd ~/.pokemonsay
: 1633067212:0;./pokemonsay.sh How Are U?
: 1633067217:0;./pokemonsay.sh How Are U
: 1633068208:0;cd fzf.vim
: 1633068217:0;cd fzf
: 1633068234:0;cd .git
: 1633068237:0;vim config
: 1633077985:0;sudo mv mafetch ~/.local/bin
: 1633078183:0;gotop -c
: 1633078218:0;gotop -c nord
: 1633078308:0;vim /usr/bin/gotop
: 1633140946:0;kilall dunst
: 1633141615:0;vim ~/.Xresources
: 1633142087:0;vim ~/.config/polybar/fin/config.ini
: 1633143046:0;vim ~/.local/bin/awesome-flameshot
: 1633144274:0;cd ShareTechMono
: 1633144313:0;sudo mv Shure* ~/.local/share/fonts/
: 1633144326:0;cd Mononoki
: 1633144343:0;sudo mv mononoki ~/.local/share/fonts
: 1633144352:0;sudo mv mononoki* ~/.local/share/fonts
: 1633144544:0;fc-list | grep 'Shure'
: 1633145614:0;sudo mv M+\ 1mn\ thin\ Nerd\ Font\ Complete\ Mono.ttf ~/.local/share/fonts
: 1633145770:0;cd Downloads/Fonts/JetBrainsMonoNerdFontCompleteBandit-Medium
: 1633145775:0;MPlus
: 1633145821:0;sudo mv 'M+ 2p light Nerd Font Complete Mono.ttf' ~/.local/share/fonts
: 1633146341:0;sudo mv 'M+ 1m thin Nerd Font Complete Mono.ttf' /usr/share/fonts
: 1633146377:0;fc-list | grep 'mplus'
: 1633146827:0;cd Downloads/Fonts/MPlus
: 1633146851:0;sudo mv M+* ~/.local/share/fonts
: 1633146870:0;fc-cache -v -f
: 1633146893:0;fc-list | grep 'M+'
: 1633147448:0;cd ~/.vim/bundle/vim-airline-themes/autoload/airline/themes
: 1633147512:0;vim airline-themes.vim
: 1633147550:0;vim airline-themes.vader
: 1633153445:0;sudo mv /usr/bin/mafetch ~/Downloads/mafetch
: 1633153459:0;sudo rm -rf mafetch
: 1633153614:0;git clone https://github.com/fikriomar16/mafetch
: 1633153620:0;cd mafetch
: 1633153679:0;wm
: 1633153683:0;wmctl
: 1633153857:0;vim ~/Downloads/mafetch/mafetch
: 1633153919:0;which wm
: 1633154013:0;echo $XDG_CURRENT_DESKTOP
: 1633155367:0;vim ./mafetch
: 1633155384:0;vim ~/.mpd/mpd.conf
: 1633156588:0;vim mafetch
: 1633156665:0;hostname
: 1633156749:0;sudo mv mafetch /usr/bin
: 1633156934:0;vim ~/.oh-my-zsh/themes/robbyrussell.zsh-theme
: 1633157016:0;cd Downloads/mafetch
: 1633158477:0;~/.vim/vimrc
: 1633158486:0;cd Videos
: 1633158493:0;vim vimrc
: 1633159590:0;vim ~/.config/dunst/dunstrc
: 1633160640:0;vim ~/.config/cava/config
: 1633160863:0;tty-clock -C 6 -s
: 1633160969:0;vim ~/.config/bspwm/bspwmrc
: 1633162135:0;vim
: 1633192993:0;vim ~/.zsh
: 1633194544:0;vim default_setting.vim
: 1633194561:0;vim fileformat.vim
: 1633194576:0;vim filetype.vim
: 1633194684:0;vim webdevicons.vim
: 1633194720:0;vim nerdtree
: 1633194734:0;vim ui_glue.vim
: 1633194777:0;vim vcs.vim
: 1633194787:0;vim fs_menu.vim
: 1633194805:0;vim exec_menuitem.vim
: 1633194820:0;vim NERD_tree.vim
: 1633194830:0;cd syntax
: 1633194863:0;vim _config.yml
: 1633194871:0;cd lib
: 1633194880:0;vim nerdtree.vim
: 1633194888:0;vim flag_set.vim
: 1633194895:0;vim ui.vim
: 1633194908:0;vim tree_file_node.vim
: 1633194952:0;vim devicons.vim
: 1633194975:0;vim vimfiler.vim
: 1633194984:0;vim ctrlp.vim
: 1633194991:0;vim denite.vim
: 1633194998:0;vim flagship.vim
: 1633195004:0;vim startify.vim
: 1633195018:0;vim unite.vim
: 1633195084:0;vim devicons_denite_converter.py
: 1633195101:0;cd fo
: 1633195106:0;vim webdevicons.txt
: 1633196911:0;cd ~/.local/share/fonts && curl -fLo DroidSansMonoForPowerlinePlusNerdFileTypes.otf https://raw.githubusercontent.com/ryanoasis/nerd-filetype-glyphs-fonts-patcher/master/patched-fonts/Droid%20Sans%20Mono%20for%20Powerline%20Plus%20Nerd%20File%20Types.otf
: 1633232515:0;vim ~/.config/picom/picom.conf
: 1633233911:0;fc-list | grep 'Matreial'
: 1633240251:0;cd ~/.vim/bundle/vim-airline-themes/autoload/airline
: 1633240258:0;vim bubblegum.vim
: 1633241604:0;vim ~/.Xdefaults
: 1633252526:0;vim ~/.vim/vimrc
: 1633272380:0;v ~/.zshr
: 1633274191:0;bat --color-scheme
: 1633274197:0;bat --color
: 1633274206:0;bat --help
: 1633274250:0;bat --list-theme
: 1633274251:0;bat --list-themes
: 1633357580:0;python3 --version
: 1633357687:0;cd Belajar\ Python/Permulaan
: 1633357692:0;v main.py
: 1633358909:0;python3 main.py
: 1633367176:0;vim onedark.vim
: 1633367799:0;v ~/.vim/bundle/vim-airline-themes/autoload/airline/themes/onedark.vim
: 1633368078:0;v ~/.bashrc
: 1633660404:0;mpd
: 1633660515:0;qc
: 1633660742:0;dna.sh && rxfetch
: 1633661619:0;sudo pacman -S wpa_supplicant
: 1633661641:0;sudo pacman -S wireless_tools
: 1633661695:0;sudo pacman -S gnome-keyring
: 1633661750:0;lspci | grep -i net
: 1633661778:0;cd /etc/hosts
: 1633661798:0;v hosts
: 1633665025:0;gotop -c monokai
: 1633665053:0;gotop -c solarized
: 1633665065:0;gotop -c default
: 1633665074:0;gotop -c vice
: 1633665167:0;./pokemonsay hello
: 1633665198:0;./pokemonsay yametkuadasi
: 1633665236:0;./pokemonsay -p Pikachu "hello"
: 1633665393:0;dna.sh
: 1633674376:0;tty-clock -S -C 5
: 1633676847:0;sudo pacman -S pulseaudio
: 1633677284:0;sudo rm -rf modules.ini
: 1633677295:0;cd Backup
: 1633677308:0;sudo mv modules.ini ~/.config/polybar/fin
: 1633689618:0;sudo mv 'Eternal Darkness.tar.xz' Themes
: 1633689637:0;tar xvf 'Eternal Darkness.tar.xz'
: 1633689653:0;sudo mv Eternal\ Darkness /usr/share/themes
: 1633690538:0;tree ~/.config/polybar/fin/
: 1633690543:0;tree ~/.config/polybar/
: 1633690826:0;sudo nano ~/.config/bspwm/bspwmrc
: 1633709233:0;neofe
: 1633709933:0;fc-list | grep 'JetBrain'
: 1633710237:0;tree ~/.config/bspwm
: 1633710242:0;tree ~/.config/polybar
: 1633750036:0;v config.rasi
: 1633750252:0;cd ~/.config/polybar/fin/scripts/rofi
: 1633750305:0;sudo pacman -S rofi
: 1633750345:0;sudo pacman -S dmenu
: 1633757999:0;v ~/.oh-my-zsh/themes/robbyrussell.zsh-theme
: 1633758038:0;cd ~/.oh-my-zsh
: 1633758147:0;exa -ls
: 1633760449:0;tty-clock -C 5
: 1633760914:0;tty-clock -C 5 -s
: 1633762670:0;fc-list | grep 'MesloLGL Nerd Font Mono'
: 1633795491:0;sudo pacman -S telegram
: 1633795765:0;fc-list | grep 'Droid Sans'
: 1633822437:0;sudo rm -rf polybar3
: 1633822457:0;sudo mv polybar ~/Backup
: 1633822839:0;sudo mv polybar ~/.config
: 1633920880:0;cd Downloads/Fonts/MIMDAN_Jawa-nyk-Ngayogyan-Jejeg
: 1633920899:0;sudo mv nykNgayogyanJejeg.ttf /usr/share/fonts
: 1633920932:0;fc-list | grep 'nyk'
: 1633924157:0;curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
: 1633924177:0;chmod u+x nvim.appimage
: 1633924183:0;./nvim.appimage
: 1633924772:0;sudo rm -rf nvim.appimage
: 1633924857:0;which nvim
: 1633924874:0;nvim
: 1633925180:0;git clone https://github.com/NvChad/NvChad ~/.config/nvim\
nvim +'hi NormalFloat guibg=#1e222a' +PackerSync
: 1633925544:0;cd ~/.config/n
: 1633925645:0;cp -r ~/.vim/vimrc ~/.config/nvim/init.vim
: 1633925660:0;v ~/.config/nvim/init.vim
: 1633926341:0;v plug.vim
: 1633926458:0;nvim ~/.config/nvim/init.lua
: 1633926788:0;nvim onedark.vim
: 1633926819:0;cd bud
: 1633932063:0;v mappings.lua
: 1633932080:0;v highlights.lua
: 1633932113:0;nvim ~/.zshrc
: 1634042060:0;
: 1633942210:0;cd core/
: 1633942247:0;nv custom.lua
: 1633942340:0;nv hooks.lua
: 1633942419:0;which bas16
: 1633942422:0;which base16
: 1634039144:0;nv autocmds.lua
: 1634039313:0;nvim default_config.lua
: 1634039408:0;v autocmds.lua
: 1634039532:0;cd ~/.config/nvim/lua/colors
: 1634039538:0;v de
: 1634040287:0;nv ~/.vim/autoload/onedark.vim
: 1634041483:0;cd ~/.config/nvim/lua/core
: 1634041539:0;v example_
: 1634041550:0;nv example_chadrc.lua
: 1634041560:0;nv example_init.lua
: 1634111468:0;nv icons.lua
: 1634111533:0;nv nvimtree.lua
: 1634111748:0;nv status
: 1634111755:0;nv statusline.lua
: 1634111859:0;nv tele
: 1634111889:0;nv lspkind_icons.lua
: 1634111910:0;nv bufferline.lua
: 1634111964:0;v init.lua
: 1634111981:0;nv highlights.lua
: 1634112064:0;cd core
: 1634112077:0;nv default_config.lua
: 1634112087:0;v default_config.lua
: 1634122361:0;git clone https://github.com/vinceliuice/grub2-themes.git
: 1634122399:0;cd /etc/grub.d/
: 1634122409:0;cd grub2-themes
: 1634122441:0;sudo ./install.sh -b -t tela
: 1634123829:0;cd Downloads/grub2-themes
: 1634123859:0;sudo ./install.sh -b -t vimix -s 2k
: 1634126369:0;nv /etc/default/grub
: 1634126511:0;sudo nv /etc/default/grub
: 1634126667:0;sudo nvim /etc/default/grub
: 1634126685:0;grub-mkconfig -o /boot/grub/grub.cfg
: 1634126691:0;sudo grub-mkconfig -o /boot/grub/grub.cfg
: 1634127462:0;sudo vim /etc/default/grub
: 1634127639:0;sudo grub-mkconfig -o /boot/grub/grub.cfg
: 1634356681:0;sudo pacman -sS java | grep jre
: 1634356881:0;sudo pacman -S jre-openjdk
: 1634356965:0;sudo pacman -sS java | grep jdk
: 1634356989:0;sudo pacman -S jdk-openjdk
: 1634357085:0;java -version
: 1634357094:0;which java
: 1634357149:0;yay minecraft
: 1634360495:0;yay -Rns minecraft-launcher
: 1634371713:0;picom --experimental-backends &
: 1634372128:0;picom &
: 1634372242:0;picom --no-vsync
: 1634374027:0;touch sysinfo.sh
: 1634374069:0;chmod +x sysinfo.sh
: 1634374839:0;nv sysinfo.sh
: 1634375356:0;./sysinfo.sh
: 1634375409:0;sudo rm -rf sysinfo.sh
: 1634380479:0;sudo pacman -S cpufetch
: 1634380492:0;yay -S cpufetch
: 1634380706:0;git clone git clone https://github.com/TheDarkBug/uwufetch.git
: 1634380716:0;git clone https://github.com/TheDarkBug/uwufetch.git
: 1634380726:0;cd uwufetch
: 1634380731:0;make build
: 1634380803:0;git clone https://github.com/yrwq/yafetch && cd yafetch
: 1634380890:0;sudo pacman -S lua
: 1634380921:0;sudo rm -rf yafetch
: 1634380998:0;git clone https://github.com/Rosettea/Bunnyfetch\
cd Bunnyfetch\
go get -d ./...\
go build -ldflags "-w -s"
: 1634381663:0;pip3 install wmctrl-python3
: 1634381671:0;python --version
: 1634381676:0;pip3
: 1634383055:0;sudo mv vfetch.py ~/Downloads/vfetch
: 1634383115:0;sudo ln -s /Downloads/vfetch/vfetch.py /usr/bin/vfetch
: 1634383401:0;cp -r vfetch.conf ~/.config/vfetch
: 1634383412:0;cd Downloads/v
: 1634383448:0;nv vfetch.
: 1634383662:0;sudo rm -rf vfetch.conf
: 1634383743:0;touch arch.txt
: 1634383881:0;cd Downloads/vfetch && ./vfetch.py
: 1634384336:0;nv ~/.zshr
: 1634384539:0;sudo pacman -S python-pyxdg
: 1634385254:0;nv arch.txt
: 1634386120:0;nv vfetch.conf
: 1634386148:0;sudo mv vfetch.py /usr/bin
: 1634386165:0;cp -r vfetch.py /usr/bin
: 1634386207:0;sudo rm -rf vfetch.py
: 1634386241:0;sudo ln -s /home/regalkun/Downloads/vfetch/vfetch.py /usr/bin/vfetch
: 1634387326:0;pip install request
: 1634387330:0;pip install requests
: 1634387347:0;git clone https://github.com/BlackHoleSecurity/FMBrute
: 1634387580:0;cd Bunnyfetch
: 1634387589:0;git clone https://github.com/ariyazz/crack-fb
: 1634387617:0;cd crack-fb
: 1634387627:0;sudo rm -rf crack-fb
: 1634390737:0;cd co
: 1634390858:0;tty-clock -s -C 6
: 1634425925:0;latte-dock
: 1634449135:0;which thunar
: 1634449172:0;nv accels.scm
: 1634449190:0;nv uca.xml
: 1634449253:0;nv ~/.gtkrc-2.0
: 1634449612:0;git clone https://github.com/owl4ce/dotfiles
: 1634450603:0;cd .themes
: 1634450616:0;sudo mv Buttons ~/.themes
: 1634450638:0;sudo mv Fleon ~/.themes
: 1634450650:0;sudo mv Sweetly ~/.themes
: 1634451595:0;cd openbox-3
: 1634451606:0;nv close.xbm
: 1634451615:0;nv COPYING
: 1634453462:0;cd ~/.themes
: 1634453466:0;cd Fleon
: 1634453470:0;cd gtk-2.0
: 1634453475:0;nv apps.rc
: 1634453592:0;nv gtkrc
: 1634453619:0;nv hacks.rc
: 1634453627:0;nv main.rc
: 1634453656:0;cd gtk-3
: 1634453659:0;cd gtk-3.0
: 1634454195:0;nv custom.css
: 1634454240:0;nv gtk.css
: 1634471637:0;nv ~/.config/polybar/fin/colors.ini
: 1634478113:0;cd candy-icons
: 1634478173:0;cd apps
: 1634486704:0;cd /usr/share/icons/candy-icons
: 1634486708:0;cd de
: 1634486714:0;cd devices
: 1634486721:0;cd scalable
: 1634486816:0;nv folder-download.svg
: 1634486959:0;cd Documents
: 1634486986:0;cp -r downloadsicon.svg /usr/share/icons/candy-icons/places/48
: 1634487167:0;lls
: 1634487245:0;cd 48
: 1634487272:0;cp -r folder-downloads.svg ../16
: 1634487278:0;cd 16
: 1634487387:0;sudo rm -rf folder-download.svg
: 1634487424:0;cd /usr/share/icons/candy-icons/places/48
: 1634487562:0;nv index.theme
: 1634487601:0;cd preview
: 1634488043:0;git clone https://github.com/ilham25/dotfiles-openbox
: 1634488174:0;cd ~/Downloads/dotfiles-openbox/.icons
: 1634488190:0;sudo mv oomox* ~/Downloads
: 1634488212:0;sudo mv oomox* Icons
: 1634488227:0;tar xvf oomox-aesthetic-dark.tar.xz
: 1634488242:0;tar xvf oomox-aesthetic-light.tar.xz
: 1634488263:0;sudo rm -rf oomox-aesthetic-dark.tar.xz
: 1634488268:0;sudo rm -rf oomox-aesthetic-light.tar.xz
: 1634488280:0;sudo mv oomox* ~/.icons
: 1634488431:0;cd ~/.icons
: 1634488438:0;cd oomox-aesthetic-light
: 1634488448:0;cd 16x16
: 1634488477:0;cd 18.18
: 1634488480:0;cd 18x18
: 1634488482:0;cd aca
: 1634488485:0;cd actions
: 1634488506:0;cd 16x16@2x
: 1634488514:0;cd places
: 1634488530:0;cd 22x22
: 1634642344:0;sudo -Rns kazam
: 1634642408:0;sudo pacman -Rns kazam
: 1634642474:0;yay simplescreenrecorder
: 1634667321:0;sudo pacman -S
: 1634667360:0;yay kazam
: 1634667467:0;yay -R kazam
: 1634667481:0;yay -Rns kazam
: 1634693053:0;sudo pacman -S --needed ttf-caladea ttf-carlito ttf-dejavu ttf-liberation ttf-linux-libertine-g noto-fonts adobe-source-code-pro-fonts adobe-source-sans-pro-fonts adobe-source-serif-pro-fonts
: 1634693151:0;paru ttf-gentium-basic
: 1634693205:0;paru hsqldb2-java
: 1634693247:0;sudo pacman -S --needed jre-openjdk
: 1634693268:0;sudo pacman -S libreoffice-still
: 1634956419:0;chmod +x borders.sh
: 1634956422:0;./borders.sh
: 1634956578:0;sudo rm -rf ./borders.sh
: 1634956900:0;vfetch
: 1634957197:0;nv ~/.Xresources
: 1634957289:0;perl -v
: 1634959741:0;sudo mv vfetch ~/Downloads/vfetch
: 1634959786:0;./vfetch
: 1634959798:0;nv vfetch
: 1634960663:0;nv ~/.ncmpcpp/config
: 1634960916:0;./pokemonsay.sh pika
: 1634960932:0;./pokemonsay.sh hello -p pika
: 1634960937:0;./pokemonsay.sh hello -P pika
: 1634960948:0;./pokemonsay.sh hello -p pikachu
: 1634960955:0;./pokemonsay.sh hello -p
: 1635069399:0;fc-list | grep 'Material'
: 1635070463:0;nv ~/.config/polybar/fin/config.ini
: 1635070847:0;polybar
: 1635070856:0;polybar fin
: 1635070909:0;polybar -c $HOME/.config/polybar/fin/launch.sh
: 1635070919:0;polybar -c=$HOME/.config/polybar/fin/launch.sh
: 1635070937:0;polybar $HOME/.config/polybar/fin/launch.sh
: 1635070956:0;polybar --config=$HOME/.config/polybar/fin/launch.sh
: 1635071078:0;polybar
: 1635071102:0;polybar -p
: 1635071117:0;polybar -c ~/.config/polybar/fin/launch.sh
: 1635071472:0;polybar --version
: 1635074514:0;~/.config/polybar/fin/launch.sh
: 1635074664:0;picom --diagnostics
: 1635082002:0;sudo pacman -S libxft
: 1635082606:0;yay rxvt-unicode-cvs-patched-wideglyphs
: 1635082714:0;git clone https://aur.archlinux.org/rxvt-unicode-cvs-patched-wideglyphs.git
: 1635082727:0;cd rxvt-unicode-cvs-patched-wideglyphs
: 1635082793:0;pkgbuild
: 1635082805:0;sudo make
: 1635083903:0;man urxvt
: 1635083952:0;cd /usr/lib64/urxvt/perl
: 1635083979:0;git clone https://github.com/simmel/urxvt-resize-font
: 1635083986:0;sudo git clone https://github.com/simmel/urxvt-resize-font
: 1635083994:0;ld
: 1635085840:0;yay rxvt-unicode-truecolor-wide-glyphs
: 1635088497:0;cd Downloads/pokemonsay
: 1635088521:0;./pokemonsay.sh hello -p Pikachu
: 1635088547:0;./pokemonsay.sh hello
: 1635088574:0;./pokemonsay.sh hello -p Snorlax
: 1635088783:0;killall dunts
: 1635090464:0;cd gradient
: 1635091460:0;sudo pacman -S noto-fonts-emoji
: 1635091700:0;sudo pacman -S emote
: 1635091712:0;yay emote
: 1635119769:0;colorblocks.sh && rxfetch
: 1635119786:0;ghost.sh && rxfetch
: 1635120604:0;cd vim-nerdtree-syntax-highlight
: 1635120613:0;nerdtree
: 1635120622:0;cd nerdtree
: 1635120626:0;nv ui_glue.vim
: 1635120637:0;nv nerdtree
: 1635120643:0;nv nerdtree.vim
: 1635120652:0;nv _config.yml
: 1635120665:0;nv NERD_tree.vim
: 1635120692:0;cd vim-devicons
: 1635120701:0;cd extensions
: 1635120704:0;cd tabline
: 1635120707:0;cd formatters
: 1635120725:0;cd devicons
: 1635120736:0;nv ctrlp.vim
: 1635120741:0;nv denite.vim
: 1635120748:0;nv flagship.vim
: 1635120755:0;nv startify.vim
: 1635120760:0;nv unite.vim
: 1635120773:0;cd vimfiler
: 1635120778:0;cd columns
: 1635120780:0;nv devicons.vim
: 1635120788:0;cd .. cd ..
: 1635120791:0;cd ..
: 1635120807:0;cd nerdtree_plugin
: 1635120844:0;nv webdevicons.vim
: 1635120857:0;nv webdevicons.txt
: 1635120914:0;cd rplugin
: 1635120917:0;cd python3
: 1635120920:0;cd denite
: 1635120923:0;cd filter
: 1635120927:0;nv devicons_denite_converter.py
: 1635120943:0;cd test
: 1635120947:0;nv default_setting.vim
: 1635120956:0;nv fileformat.vim
: 1635120973:0;nv filetype.vim
: 1635121570:0;colorblocks2.sh && rxfetch
: 1635121651:0;tty-clock -s -C 5
: 1635121794:0;sudo nv /usr/bin/mafetch
: 1635121805:0;sudo vim /usr/bin/mafetch
: 1635125968:0;grep 'vfetch'
: 1635126299:0;sudo pacman -S xdg
: 1635126305:0;yay xdg
: 1635126342:0;distro
: 1635126514:0;sudo pacman -S archlinux-xdg-menu
: 1635126644:0;yay -S nerdfetch
: 1635126707:0;nerdfetch
: 1635174397:0;nv ~/.config/polybar/fin/modules.ini
: 1635175445:0;fc-list | grep 'Droid'
: 1635175755:0;nv ~/.oh-my-zsh/themes/robbyrussell.zsh-theme
: 1635176427:0;fc-list | grep 'mplus Nerd Font Mono'
: 1635177491:0;goyop
: 1635234381:0;ps mem | grep 'bspwm'
: 1635234389:0;ps mem
: 1635234397:0;ps memory
: 1635234414:0;ps usage
: 1635234428:0;ps mam | grep 'polybar'
: 1635234484:0;sudo pacman -S ps_mem
: 1635234544:0;ps_mem | grep 'bspwm'
: 1635234557:0;sudo ps_mem | grep 'bspwm'
: 1635234568:0;sudo ps_mem | grep 'picom'
: 1635234578:0;sudo ps_mem | grep 'polybar'
: 1635234583:0;sudo ps_mem | grep 'rofi'
: 1635234608:0;exa -l --icons
: 1635234766:0;sudo pacman -S openmp llvm
: 1635234812:0;sudo pacman -S clang
: 1635234855:0;$ git clone https://github.com/sebastiencs/icons-in-terminal.git\
: 1635234977:0;nv ~/.config/fontconfig/conf.d/30-icons.conf
: 1635235023:0;./print_icons.sh
: 1635235043:0;./install-autodetect.sh
: 1635235075:0;./print_icons.sh --names
: 1635235204:0;cd ~/.local/share/icons-in-terminal
: 1635235301:0;sudo rm -rf icons-in-terminal
: 1635237026:0;cd dotfiles-openbox
: 1635237038:0;sudo rm -rf dotfiles-openbox
: 1635237092:0;sudo rm -rf ~/.zshrc
: 1635237100:0;sudo rm -rf ~/.Xdefaults
: 1635237123:0;sudo mv .zshrc /home/regalkun
: 1635237134:0;sudo mv .Xdefaults /home/regalkun
: 1635237637:0;which neovim
: 1635238037:0;fc-cat
: 1635238044:0;fc-cache
: 1635238069:0;cd ~/.fonts
: 1635238186:0;git clone https://github.com/sebastiencs/icons-in-terminal.git\
: 1635238213:0;cd icons-in-terminal
: 1635238266:0;cd conf.d
: 1635239271:0;nv /etc/fonts/conf.d
: 1635241548:0;cd /etc/fonts/conf.d
: 1635241559:0;sudo ln -s /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf
: 1635241604:0;mkdir $XDG_CONFIG_HOME/fontconfig/conf.d
: 1635241707:0;mkdir ~/.config/fontconfig/conf.d
: 1635241712:0;mkdir ~/.config/fontconfig/
: 1635241718:0;cd ~/.config/fontconfig
: 1635241730:0;touch conf.d
: 1635241740:0;ln -s /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf $XDG_CONFIG_HOME/fontconfig/conf.d
: 1635241770:0;sudo rm -rf fontconfig
: 1635301922:0;sudo pacman -S virtualbox virtualbox-guest-iso
: 1635304022:0;sudo pacman -Rns virtualbox
: 1635304331:0;sudo pacman -S vboxdrv
: 1635304344:0;yay vboxdrv
: 1635304521:0;sudo pacman -S virtualbox-host-dkms
: 1635304625:0;sudo pacman -S virtualbox-host-modules-arch
: 1635304642:0;sudo pacman -S virtualbox-host-modules-artix
: 1635304669:0;sudo modprobe vboxdrv
: 1635304677:0;virtualbox
: 1635307625:0;sudo nv /etc/modules-load.d/virtualbox.conf
: 1635307639:0;sudo vim /etc/modules-load.d/virtualbox.conf
: 1635307685:0;sudo nano /etc/modules-load.d/virtualbox.conf
: 1635307736:0;cd /etc/
: 1635307772:0;sudo mkdir modules-load.d/
: 1635307775:0;cd modules-load.d
: 1635307789:0;touch virtualbox.conf
: 1635307794:0;sudo touch virtualbox.conf
: 1635307805:0;sudo vim virtualbox.conf
: 1635307858:0;sudo usermod -aG vboxusers regalkun
: 1635307870:0;sudo lsmod | grep vboxdrv
: 1635308131:0;sudo pacman -S virtualbox
: 1635331491:0;git clone https://github.com/1nonlyy/DotFiles1
: 1635331554:0;cp -r fontconfig ~/.config
: 1635333787:0;cd ~/.config/polybar/fin
: 1635334420:0;sudo rm -rf RegalFiles
: 1635334438:0;cd RegalFiles
: 1635334614:0;sudo umount /dev/sdb1
: 1635334617:0;sudo mkfs.vfat /dev/sdb1
: 1635334781:0;cd /media
: 1635334797:0;sudo cd /media
: 1635335692:0;mount /dev/sdb1/ /home/regalkun/Flashdisk
: 1635335699:0;sudo mount /dev/sdb1/ /home/regalkun/Flashdisk
: 1635335744:0;sudo mount /dev/sdb1 /home/regalkun/Flashdisk
: 1635335796:0;cd Flashdisk
: 1635335823:0;cp -r RegalFiles ~/Flashdisk
: 1635338328:0;cp -r Pictures ~/Flashdisk
: 1635338350:0;cp -r Pictures2 ~/Flashdisk
: 1635338470:0;umount ~/Flashdisk
: 1635338474:0;sudo umount ~/Flashdisk
: 1635593112:0;ssh [email protected]
: 1635593126:0;ssh [email protected] -p 8080
: 1635593282:0;y
: 1635593655:0;nmap wlan0
: 1635593735:0;nmap -v -sn 192.168.1.14
: 1635593752:0;nmap -v -A 192.168.1.14
: 1635593973:0;sshd
: 1635593980:0;ssh -d
: 1635594011:0;sudo ssh status
: 1635594161:0;ssh
: 1635594286:0;git clone https://github.com/migueravila/SimpleFox
: 1635594609:0;cd SimpleFox
: 1635594629:0;sudo mv chrome ~/.mozilla/firefox/3z7redxe.default-release
: 1635594804:0;cd ~/.mozilla/firefox/3z7redxe.default-release/chrome/
: 1635594811:0;nv userChrome.css
: 1635666082:0;cd ~/.mozilla/firefox/3z7redxe.default-release
: 1635666103:0;cd firefox/
: 1635666108:0;cd 3z7redxe.default-release
: 1635666231:0;cd ~/.mozilla
: 1635666236:0;cd firefox/3z7redxe.default-release
: 1635667592:0;cd ~/.mozilla/firefox/3z7redxe.default-release
: 1635667657:0;git clone https://github.com/PROxZIMA/Firefox-Theme.git chrome\