-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_history
2000 lines (1995 loc) · 33 KB
/
.bash_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
polybar example
kill polybar
kill
htop
vim .config/polybar/config
polybar example
git add -f .config/polybar/config
git commit -a
git push
vci
shutdown now
termite --help-gtk
termite -h
termite --help-gtk
vim .config/gtk-3.0/gtk.css
termite
ranger
vct
vci
shutdown now
polbar
polybar
polybar r
polybar -r
polybar -r example
reboot
mtm
C
termite
termite -f
termite -h
man termite
man termite.config
man termite
man termite.gtk
termite -h
termite --help-all
termite --help-gtk
:q
shutdown now
ping
shutdown now
nmtui
alsamixer
vim
urxvt
C
C .Xdefaults
atom .Xdefaults
vim
vim Documents/Programmes/TM_Algo/src/script.js
ranger
vim Documents/Programmes/TM_Algo/src/script.js
vim
vim Documents/Programmes/TM_Algo/src/script.js
vim
vim Documents/Programmes/TM_Algo/src/script.js
ranger
polybar example
vim .config/polybar/config
neofetch
trizen -S discord
trizen -Ss discord
trizen -S discord-canary
vim
ranger
vim .config/ranger/rc.conf
trizen -S rxvt-unicode-pixbuf
vci
trizen -S rxvt-unicode-pixbuf
ranger
vim .config/ranger/rc.conf
ranger
vim .config/ranger/rc.conf
ranger
urxvt
trizen -S urxvt-perl
trizen -S urxvt-perls
vim .Xdefaults
urxvt
trizen -Ss urxvt-resize-font
trizen -Ss urxvt resize-font
trizen -S urxvt-resize-font-git
urxvt
vim
ranger
vim
ranger
trizen -Ss w3mimgdisplay
vim .Xdefaults
ranger --copy-config=scope
ranger
trizen -S w3m
ranger
ranger --copy-config=scope
rm .config/ranger/scope.sh
ranger --copy-config=scope
ranger
rm .config/ranger/scope.sh
ranger
ranger --copy-config=scope
vim .config/ranger/rc.conf
ranger --copy-config=scope
ranger
re
vim .config/ranger/rc.conf
ranger
vim .config/ranger/rc.conf
trizen -Ss w3m
ranger
cd Téléchargements/
tar -zxvf discord-0.0.3.tar.gz Discord/
cd Discord/
makepkg -sri
ls
ranger
./Discord
git status
git add -f .Xdefaults
git status
vim .config/polybar/config
git status
git commit -a
git push
code
trizen -Syyuu
gnome-bluetooth
trizen -Rsn gnome-desktop
bluez
systemctl
vim README.md
lxappearance
reboot
hzop
htop
code
lxappearance
nmtui
nmtui
clean
clear
neofetch
spicy-screenshot
idevicescreenshot
scot
scrot
trizen -S scrot
scrot
scrot -h
scrot -d 1
scrot -d 10
clear
neofetch
git status
git commit -a
git push
scrot -d 10
ranger
shutdown now
urxvt -h
vim
vim .Xdefaults
man urxvt
vim
ranger
fish
trizen -Ss hyper
trizen -S hyper
trizen -S fish
fish
reboot
vim .config/gtk-3.0/gtk.css
xbacklight -dec 10
sudo xbacklight -dec 10
xev -event keyboard
vci
xbacklight
-dec 10
xbacklight -dec 10
sudo vim /etc/udev/rules.d/backlight.rules
trizen -S light
light -A 5
light -G
light -A -5
light -U -5
light -U 5
light -U 10
vci
alsa
alsabat-test.sh
alsamixergui
pulseaudio
shutdown now
trizen -S helvetica
trizen -Ss helvetica
trizen -S inkscape
mb
mtm
nmp install --global vue-cli
npm install --global vue-cli
vue-clo
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
source ~/.profile
npm install --global vue-cli
vue init webpack TestVueJS
cd TestVueJS/
npm install
npm run dev
cd ..
cd TestVueJS/
npm run dev
mp
cd TestFileJs/
node index.js
clear
node index.js
clear
node index.js
[A
node index.js
cd
git status
git rm .config/ranger/bookmarks
git rm .config/ranger/bookmarks -f
git rm .config/ranger/history -f
git status
git commit -a
git push
trizen -U
trizen -stats
trizen --stats
.config/
cd .config/
ls
mkdir scripts
cd scripts/
touch shortcut.js
C
vcv
md
ls
mkdir Ecriture
ls Ecriture/
mkdir projet1
cd projet1/
mklp .
ls
pandoc paper.tex
pandoc -h
pandoc -f paper.tex -t paper.pdf
pandoc -f .tex -t .pdf
pandoc -f .tex -t pdf
pandoc -f .tex -o paper.pdf
pandoc paper.tex -o paper.pdf
ls
mupdf paper.pdf
mupdf paper.pdf &
vim paper.tex
shutdown now
bluetooth-player
bluedevil-wizard
blueman-assistant
blueman-manager
blueman-services
trizen -Ss unity-control-center
trizen -Ss unity-controle-center
trizen -Ss gnome-control-center
trizen -S gnome-control-center
gnome-control-center bluetooth
trizen -Rsn gnome-control-center
trizen -S blueberry
blueberry
trizen -S bluez-utils bluez-gnome bluez-alsa
blue
trizen -Ss bluez
trizen -S bluez-utils bluez-gnome bluez-alsa-git
hcitool scan
trizen -S bluez
hcitool scan
trizen -S hcitool
trizen -Ss hcitool
bluealsa
bluetoothctl
trizen -S pulseaudio-bluetooth
trizen -S pulseaudio
pavucontrol
trizen -Rsn bluez
trizen -Rsn blueman bluez-qt bluez-tools gnome-bluetooth pulseaudio-bluetooth
bluedevil-wizard
blueman-browse
blueman-manager
sudo blueman-manager
blueman-applet
blueman-manager
systemctl
shutdown now
systemctl start bluetooth.service
systemctl enable bluetooth.service
polybar example
rfkill polybar
kill polybar
rfkill list
killall polybar
polybar example
vci
alsamixer
blueman-manager
blueman-applet
blueman-manager
blueberry
trizen -S spotify
trizen -Ss spotify
trizen -S spotify
vci
vim .bash_history
pavucontrol
man pavucontrol
man pavucontrole
pavucontrol
pavucontrol -h
pulseaudio
pulseaudio man
man pulseaudio
alsamixer -h
alsactl -h
amixer set Master 50%
amixer set Master 100%
amixer set Master 10%+
amixer set Master 10%-
amixer set Master 10%+
amixer -h
neofetch
htop
vci
blueberry
vcb
vcr
vci
vcb
r
cf
ls
cd
h
cf
cfb
vci
vcb
cg
cf
cfb
b
h
ranger
d
mtm
tm
cf
cfp
git add .config/Scripts/*
git -f add .config/Scripts/*
git add .config/Scripts/* -f
git commit -a
git push
vci
cfi
tm
h
ls tmp/
rm -rf tmp/
blueman-applet
shutdown now
trizen -S qbittorrent
fdisk -l
sudo fdisk -l
sudo gparted
lsusb
blueman-browse
lusb
lsusb
blueman-manager
blueman-applet
blueberry
sudo fdisk -l
trizen -S input-ultis
trizen -S lsinput
trizen -Ss lsinput
trizen -S input-utils
lsinput
sudo lsinput
lsusb
sudo fdisk -l
trizen -S thunar-archive-plugin
blueberry
l
h
blueman-applet
blueman-manager
trizen -Ss steam
trizen -S sl
ls
sl
l
sé
sl
cfi
xrandr
x
xprop
cfi
trizen -Ss discord
trizen -S weechat
weechat
shutdown now
trizen -Ss blueman
reboot
systemctl
sudo systemctl disable bluetooth.service
sudo systemctl enable bluetooth.service
cfp
e
h
ls
d
cd projet1/
ls
ranger
nmtui
h
d
nmtui
cfd
C .Xdefaults
nmtui
ranger
cfp
nmtui
mntui
nmtui
ranger
cfi
ranger
cfb
ranger
cfi
b
vim BroCode.tex
ranger
git commit -a
git push
vim
vcb
cfp
shutdown now
cfx
cfd
C .Xdefaults
cfp
shutdown now
vim
pywal
trizen -Ss pywal
trizen -S python-pywal-git
pywal
wal
wal -h
wal -i wallpaper/current/berserk1.jpg
vim .Xressources
vim .Xdefaults
code .Xdefaults
neofetch
vim
vim .Xdefaults
vim .Xressources
vim .Xauthority
vim .config/wal/templates/
touch .config/wal/templates/colors.Xressources
vim .config/wal/templates/colors.Xressources
wal -i wallpaper/current/berserk1.jpg
vim .Xressources
vim .Xdefaults
vim
wal -i wallpaper/current/berserk1.jpg
trizen -S wpgtk-git
wal -i wallpaper/current/berserk1.jpg -b #000000CC
wal -i wallpaper/current/berserk1.jpg -b #000000
wal -i wallpaper/current/berserk1.jpg -B #000000
wal -i wallpaper/current/berserk1.jpg -b #000000
wal -b #000000 -i wallpaper/current/berserk1.jpg
wal -b 000000 -i wallpaper/current/berserk1.jpg
wal -b 000011 -i wallpaper/current/berserk1.jpg
wal -b ffffff -i wallpaper/current/berserk1.jpg
wal -b ffffff -i wallpaper/current/berserk1.jpg -n
wal -b ffffff -i "wallpaper/current/berserk1.jpg" -n
wal -i "wallpaper/current/berserk1.jpg" -n
wal -a 80 -i "wallpaper/current/berserk1.jpg" -n
wal -a 90 -i "wallpaper/current/berserk1.jpg" -n
git clone https://github.com/dylanaraps/pywal.git
cp .Xdefaults .Xdefaults_old
wal - h
wal -h$
wal
wpg
vim .Xressources
xrdb
xrdb -g
sudo wpg
wpg
vim
cfp
code .config/polybar/config
vim .Xressources
ls .cache/wal/colors.Xressources
vim .cache/wal/colors.Xressources
wal -a 80 -i "wallpaper/current/berserk1.jpg"
wal -a 90 -i "wallpaper/current/berserk1.jpg"
vim .cache/wal/colors.Xressources
code .cache/wal/colors.Xres
code .cache/wal/colors.Xressources
wal -a 90 -i "wallpaper/berserk2.jpg"
wal -a 90 -i "wallpaper/berserk2.jpg" -b 000000
wal -a 90 -i "wallpaper/berserk2.jpg"
wal -a 90 -i "wallpaper/current/berserk1.jpg"
.themes/
ls .themes/
unzip Téléchargements/Flatabulous-wal-master.zip
ls Téléchargements/
ls
mv Flatabulous-wal-master/ .themes/
ls .themes/
mv .themes/Flatabulous-wal-master/ .themes/Flatabulous-wal
lxappearance
wal -a 90 -i "wallpaper/current/berserk1.jpg"
wpg
wpg2raw
wpg-install.sh
wpg
wal -a 90 -i "wallpaper/current/berserk1.jpg"
lxappearance
wal -a 90 -B #FFFFFF-i "wallpaper/current/berserk1.jpg"
wal -a 90 -B #FFFFFF -i "wallpaper/current/berserk1.jpg"
wal -a 90 -b #FFFFFF -i "wallpaper/current/berserk1.jpg"
wal -a 90 -b#FFFFFF -i "wallpaper/current/berserk1.jpg"
wal -a 90 -#FFFFFF -i "wallpaper/current/berserk1.jpg"
wal -a 90 #000000 -i "wallpaper/current/berserk1.jpg"
wal -a 90 #00000 -i "wallpaper/current/berserk1.jpg"
wal -a 90 -i "wallpaper/current/berserk1.jpg"
wal -a 90 #000000 -i "wallpaper/current/berserk1.jpg"
wal -a 90 #000000 -i "wallpaper/berserk2.jpg"
wal -a 90 -#000000 -i "wallpaper/berserk2.jpg"
wal -a 90 -b#000000 -i "wallpaper/berserk2.jpg"
wal -h
trizen -Ss pywal
mt
mtm
tm
vim src/script.js
shutdown now
wal -a 90 -b#000000 -i wallpaper/current/*
wal -a 90 -i wallpaper/current/*
wal -a 90 -b#000000 -i wallpaper/current/*
wal -a 90 -i wallpaper/current/*
rofi
rofi -h
code /home/bluedrack/.config/rofi/config
code /home/bluedrack/.config/rofi/theme.rasi
vim .cache/wal/colors-rofi.Xresources
vim .cache/wal/colors.Xressources
vim .cache/wal/colors-rofi.Xresources
vim /etc/rofi.conf
xrdb
xrdb -h
code /home/bluedrack/.config/rofi/config
vim .Xdefaults
cfp
wal -a 90 -i wallpaper/current/*
wal -a 90 -b000000 -i wallpaper/current/*
wal -a 90 -b#000000 -i wallpaper/current/*
cfi
reboot
wal -a 90 -b#000000 -i wallpaper/current/*
ls .cache/wal/
trizen -Syyuua --noconfirm
trizen -Syyuu --noconfirm
trizen -Ss gtop
trizen -S gtop
gtop
cfi
rofi
rofi -h
man rofi
vim /usr/share/dbus-1/services
dbus-daemon
dbus-daemon -h
ls /usr/share/dbus-1/
ls /usr/share/dbus-1/system-services/
ls /usr/share/dbus-1/services/
trizen -Rsn kde
trizen -Ss kde
wal -a 90 -b#000000 --randomize -i wallpaper/current/*
wal -a 90 -b#000000 -r -i wallpaper/current/*
wal -a 90 -b#000000 -i wallpaper/current/*
lxappearance
gtop
trizen -Ss dunst
trizen -S dunst
dunst
vlc
neofetch
gtop
notify-send 'Hello world!' 'This is an example notification.' --icon=dialog-information
dunst
notify-send 'Hello world!' 'This is an example notification.' --icon=dialog-information
dunst
notify-send 'Hello world!' 'This is an example notification.' --icon=dialog-information
systemctl
notify-send --icon=gtk-info Test "This is a test"
notify-osd
trizen -Ss notify-osd
notify-send --icon=gtk-info Test "This is a test"
dunst
dunst -h
dunst -sort salut
gdbus call --session --dest org.freedesktop.DBus --object-path /org/freedesktop/Dbus --method org.freedesktop.DBus.ListNames
dunst -sort salut
gdbus call --session --dest org.freedesktop.DBus --object-path /org/freedesktop/Dbus --method org.freedesktop.DBus.ListNames
notify-send --icon=gtk-info Test "This is a test"
exec killall -q notify-osd
cfi
shuf -n1 -e /path/to/files/*
shuf -n1 -e ~/wallpaper/current/*
git status
git commit -a
vim README.md
git commit -a
git push
notify-send --icon=gtk-info Test "This is a test"
reboot
notify-send --icon=gtk-info Test "This is a test"
dunst
notify-send --icon=gtk-info Test "This is a test"
cfi
reboot
dunst
dunst -g
dunst -h
dunst -conf Téléchargements/dunstrc1
touch dunstrc
vim dunstrc
dunst -conf dunstrc
clear
dunst -conf Téléchargements/dunstrc1
ranger
notify-send --icon=gtk-info Test "This is a test"
vim .config/Scripts/configs
trizen -S qutebrowser
cfr
vim .config/wal/templates/colors.Xressources
git push
vim .cache/wal/colors.Xressources
git push
vim .config/wal/templates/colors.Xressources
git push
git commit -a
git push
neofetch
git push
vim
git push
git commit -a
git push
vim
git push
vim .config/wal/templates/colors.Xressources
vim .cache/wal/colors.Xresources
vim .cache/wal/wal
xrdb -h
xrdb .cache/wal/colors.Xressources
vim .config/
ranger
notify-send --icon=gtk-info Test "This is a test"
git add .config/dunst/config
git add .config/dunst/config -f
git commit -a
vim .config/dunst/config
killall dunst
notify-send --icon=gtk-info Test "This is a test"
dunst -conf .config/dunst/config
vim README.md
git status
git commit -a
git push
vim .config/ranger/commands.py
vim .config/ranger/tagged
vim .config/ranger/colorschemes/__init__.py
vim .config/ranger/scope.sh
ranger
ranger --copy-config=all
ranger
ls .config/ranger/
ranger -h
cp /usr/lib/python*.*/site-packages/ranger/colorschemes/* $XDG_CONFIG_HOME/ranger/colorschemes/
cfr
vim .config/Scripts/configs
python .config/Scripts/shortcuts.py
git commit -a
git push
vim .Xressources
vim .Xdefaults
dunst
ranger
dunst
blueman-manager
git commit -a
git push
cfd
cfn
vim .config/Scripts/
python .config/Scripts/shortcuts.py
cfn
dunst
cfi
ranger
gtop
git commit -a
git push
git status
git add Screenshot.png
git status
git commit
git commit -a
vim .Xressources
vim .Xdefaults
cft
vim .Xdefaults
trizen -Qe
trizen -Rsn Vimix
trizen -Q
trizen -Qe
trizen -Q
trizen --stats
trizen -Rsn openmotif cmake help2man ortp
trizen -Rsn flatplat-blue-theme flatplat-theme
evolution
trizen -Rsn evolution
trizen -Rsn gnome-calendar
trizen -Rsn evolution
trizen -Rsn vimix-gtk-themes-git
trizen -Rsn vimix-gtk-icon-theme
trizen -Rsn vimix-icon-theme
trizen -Rsn vinagre
trizen -Rsn powerline-fonts
trizen -Rsn gnome*
trizen -Rsn gnome
trizen -Rsn gnome-weather
trizen -Rsn gnome-tweak-tool
trizen -Rsn gnome-todo
trizen -Rsn gnome-tetravex
trizen -Rsn gnome-taquin
trizen -Rsn gnome-sudoku
trizen -Rsn gnome-sound-recorder
trizen -Rsn gnome-settings-daemon
trizen -Rsn gnome-robots
trizen -Rsn gnome-photos
trizen -Rsn gnome-nibbles
trizen -Rsn gnome-nettool
trizen -Rsn gnome-music
trizen -Rsn gnome-mines
trizen -Rsn gnome-maps
trizen -Rsn gnome-mahjongg
trizen -Rsn gnome-logs
trizen -Rsn gnome-klotski
trizen -Rsn gnome-keyring
trizen -Rsn gnome-getting-started-docs
trizen -Rsn gnome-documents
trizen -Rsn gnome-devel-docs
trizen -Rsn gnome-color-manager
trizen -Rsn gnome-code-assistance
trizen -Rsn gnome-clocks
trizen -Rsn gnome-chess
trizen -Rsn gnome-characters
trizen -Rsn gnome-builder
trizen -Rsn gnome-backgrounds
trizen -Rsn gnome-2048
trizen -Rsn gnome-online-accounts
trizen -Rsn gnome-desktop
trizen -Rsn nautilus
trizen -Rsn gnome-bluetooth
trizen -Q
git commit -a
git push
trizen -Rsn Ant
trizen -Rsn anjuta
g
shutdown now
cfi
git commit -a
git push
git add .config/dunst/dunstrc
git add .config/dunst/dunstrc -f
git commit -a
git push
git pull
polybar example
cfp
shutdown now
fhd
sl
neofetch
trizen -Syyuu --noconfirm
scim
vim .config/Scripts/wal-set
ranger .config/Scripts/
git pull
notify-send "salut"
cfi
reboot
notify-send "salut"
wal -a 90 -i wallpaper/current/ghibli.jpg -o .config/Scripts/wal-set
notify-send "salut"
ranger .config/Scripts/
trizen -Syyuu
trizen -Syyuu --noconfirm
trizen -Ss i3-gaps
trizen -Ss i3-gaps-next-git
trizen -S i3-gaps-next-git
notify-send "salut"
trizen -Ss pywal
trizen -Ss python-pywal
trizen -S python-pywal
trizen -Rsn wpgtk-git
trizen -S python-pywal
notify-send "salut"
cfi
notify-send "salut"
trizen -S python-pywal
trizen --status
trizen -status
trizen --stats
trizen -Syyuu
trizen -Rsn visual-studio-code
trizen -S visual-studio-code-insiders
code-insiders
trizen -Syyuu
sx
scim
ranger
trizen -Ss pipe
brew install pipes-sh
trizen -S braw
trizen -S brew
trizen -Ss brew
git clone https://github.com/pipeseroni/pipes.sh.git
cd pipes.sh/
make install
$ make PREFIX=$HOME/.local install
make PREFIX=$HOME/.local install
pipe.sh
pipe-sh
trizen -Syyuu
trizen -Ss homebrew
cd pipes.sh/
ls
./pipes.sh
clear
ls
vim Makefile
make install
sudo make install
pipes.sh
pipes.sh -t 8
pipes.sh
q
git status
cfi
dunst
notify-send "salut"
chmod +755 .config/Scripts/wal-set
notify-send "salut"
cfi
cfb
neofetch
man neofetch
neofetch --backend "w3m" --source wallpaper/current/*
neofetch --backend "caca" --source wallpaper/current/*
neofetch --backend "sixel" --source wallpaper/current/*
neofetch --backend "w3m" --source wallpaper/current/*
ranger
cfb
tm
C
cfb
C
tm
C
tm
C
firefox
neofetch
lxappearance
ping google.com
ping -c 3google.com
ping -c 3 google.com
nmtui
ranger
vim
etcher
df -h
etcher
gparted
sudo gparted
df -h
d
D
T
t
unzip ev3dev-jessie-ev3-generic-2017-09-14.zip
trizen -S etcher-electron
trizen -Ss etcher
trizen -Ss disk image writer
trizen -Ss imagewriter
trizen -S imagewriter
imagewriter
sudo imagewriter
imagewriter
trizen -Ss imagewriter
trizen -Ss image writer
cd interface/
rm -rf game/
git clone https://github.com/mzabriskie/react-example.git
mv react-example/ game
cd game/
npm run setup
npm run dev
firefox index.html
npm run dev
cd ..
rm -rf game
mkdir game
cd game
npm init
npm i -D babel
npm i -D webpack webpack-dev-server
npm i -D cross-env
killall firefox
cd interface/
cd game
./node_modules/.bin/webpack
npm run dev
cd interface/game/
npm run dev
webpack
npm run dev
p
cd
git status
git pull
git add *
git status
git commit -a
git push
git pul
git pull
shutdown now
trizen -Ss openbox
trizen -S openbox
vim .xinitrc
termite
termite &
$ cp -R /etc/xdg/openbox ~/.config/
cp -R /etc/xdg/openbox ~/.config/
trizen -S obconf
trizen -S openbox-themes
vim .config/openbox/rc.xml
vim .xinitrc
reboot
termite
shutdown now
trizen -Ss opera
trizen -S opera
trizen -Sy opera
cfv
vim .vimrc
me
cd PhysiqueTP/
mklp .
ls
vim paper.tex
me
cd ExposeCyrano/
ls
mklp .
vim paper.tex
touch biblio.bib