# - bof - # # :1 # - - # # - Change Desktop type - # vim ~/Arch_PostInstallation.sh; Desktop_=8; # 1.Xfce 2.Cinnamon 3.Kde-Plasma 4.Gnome 5.Deepin 6.Budgie 7.OpenBox 8.XMonad 9.NoDesktop # :2 # - - # # - Additional software - # cd ~/; sudo pacman -S cronie --noconfirm; cd ~/Downloads; git clone https://github.com/Axarva/dotfiles-2.0.git; cd dotfiles-2.0; chmod +x install-on-arch.sh; ./install-on-arch.sh; # :2 # - - # # - Keyboard shortcuts - # gedit ~/.config/openbox/rc.xml; true Firefox firefox true Thunar thunar true rofi rofi -show run -show icons true Reconfigure openbox --reconfigure true Tilix tilix true i3lock sh ~/.config/launch.sh # :3 # - - # # - i3lock - # # :3.1 # - - # # - Documentation - # https://github.com/Raymo111/i3lock-color # :3.2 # - - # # - i3lock - # gedit ~/.config/launch.sh; #!/bin/sh BLANK='#00000000' CLEAR='#ffffff22' DEFAULT='#ff00ffcc' TEXT='#ee00eeee' WRONG='#880000bb' VERIFYING='#bb00bbbb' /usr/bin/i3lock \ --insidever-color=$CLEAR \ --ringver-color=$VERIFYING \ \ --insidewrong-color=$CLEAR \ --ringwrong-color=$WRONG \ \ --inside-color=$BLANK \ --ring-color=$DEFAULT \ --line-color=$BLANK \ --separator-color=$DEFAULT \ \ --verif-color=$TEXT \ --wrong-color=$TEXT \ --time-color=$TEXT \ --date-color=$TEXT \ --layout-color=$TEXT \ --keyhl-color=$WRONG \ --bshl-color=$WRONG \ \ --screen 1 \ --blur 5 \ --clock \ --indicator \ --time-str="%H:%M:%S" \ --date-str="%A, %m %Y" \ --keylayout 1 \ # :3.3 # - - # # - Change permissions - # #chmod +x ~/.config/launch.sh; # :4 # - - # # - Rofi menu - # # :4.1 # - - # # - Documentation - # # :4.1.1 # - - # # - Rofi power menu - # https://www.youtube.com/watch?v=3YP_KHgVMa4 https://www.youtube.com/watch?v=v8w1i3wAKiw # :4.1.2 # - - # # - Rofi launcher menu - # # - Very good - # https://www.youtube.com/watch?v=9yLULFzmg3o https://www.youtube.com/watch?v=a2GWqF32U8Q sudo pacman -S rofi --noconfirm; mkdir -p ~/.config/rofi; rofi -dump-config > ~/.config/rofi/config.rasi; # - Very good - # https://www.youtube.com/watch?v=oFfuJBp2M7w https://www.youtube.com/watch?v=CptKBPTxcsA rofi -show run; rofi -modes "run,ssh" -show run; rofi -show window; rofi -show ssh; rofi -show keys; # - - # # - Change theme - # rofi-theme-selector select enter Alt+a rofi -show run; rofi -show run -show icons; # - eof - #