Update and minor changes to upgrade script
This commit is contained in:
parent
92ada44d97
commit
927b334aa9
@ -49,7 +49,7 @@ xterm*loginShell: true
|
||||
xterm*vt100*geometry: 90x34
|
||||
xterm*saveLines: 2000
|
||||
xterm*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
|
||||
xterm*termName: xterm-color
|
||||
xterm*termName: xterm-256color
|
||||
xterm*eightBitInput: false
|
||||
|
||||
|
||||
|
@ -49,7 +49,7 @@ xterm*loginShell: true
|
||||
xterm*vt100*geometry: 90x34
|
||||
xterm*saveLines: 2000
|
||||
xterm*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
|
||||
xterm*termName: xterm-color
|
||||
xterm*termName: xterm-256color
|
||||
xterm*eightBitInput: false
|
||||
|
||||
|
||||
|
@ -1,103 +1,78 @@
|
||||
# Shadow
|
||||
shadow = true;
|
||||
no-dnd-shadow = true;
|
||||
no-dock-shadow = true;
|
||||
clear-shadow = true;
|
||||
shadow-radius = 7;
|
||||
shadow-offset-x = -7;
|
||||
shadow-offset-y = -7;
|
||||
shadow-opacity = 0.60;
|
||||
shadow-ignore-shaped = true;
|
||||
shadow = true;
|
||||
no-dnd-shadow = true;
|
||||
no-dock-shadow = true;
|
||||
clear-shadow = true;
|
||||
shadow-radius = 7;
|
||||
shadow-offset-x = -7;
|
||||
shadow-offset-y = -7;
|
||||
shadow-opacity = 0.60;
|
||||
shadow-ignore-shaped = true;
|
||||
|
||||
# Opacity
|
||||
menu-opacity = 1.0;
|
||||
inactive-opacity = 1.0;
|
||||
active-opacity = 1.0;
|
||||
menu-opacity = 1.0;
|
||||
inactive-opacity = 1.0;
|
||||
active-opacity = 1.0;
|
||||
inactive-opacity-override = false;
|
||||
|
||||
# Fade
|
||||
fading = true;
|
||||
fade-delta = 10;
|
||||
fade-in-step = 0.03;
|
||||
fade-out-step = 0.028;
|
||||
alpha-step = 0.06;
|
||||
no-fading-openclose = true;
|
||||
fading = true;
|
||||
fade-delta = 10;
|
||||
fade-in-step = 0.03;
|
||||
fade-out-step = 0.028;
|
||||
alpha-step = 0.06;
|
||||
no-fading-openclose = true;
|
||||
no-fading-destroyed-argb = false;
|
||||
|
||||
# Backend
|
||||
backend = "xrender";
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
detect-rounded-corners = true;
|
||||
detect-client-opacity = true;
|
||||
refresh-rate = 0;
|
||||
vsync = "opengl";
|
||||
paint-on-overlay = true;
|
||||
unredir-if-possible = true;
|
||||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
backend = "xrender";
|
||||
vsync = "opengl";
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
detect-rounded-corners = true;
|
||||
detect-client-opacity = true;
|
||||
refresh-rate = 0;
|
||||
paint-on-overlay = true;
|
||||
unredir-if-possible = true;
|
||||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
|
||||
# GLX backend
|
||||
glx-no-stencil = true;
|
||||
glx-no-rebind-pixmap = true;
|
||||
#glx-copy-from-front = false;
|
||||
#glx-use-copysubbuffermesa = true;
|
||||
#glx-swap-method = "undefined";
|
||||
#glx-use-gpushader4 = true;
|
||||
#xrender-sync = true;
|
||||
#xrender-sync-fence = true;
|
||||
glx-no-stencil = true;
|
||||
glx-no-rebind-pixmap = true;
|
||||
|
||||
opacity-rule = [
|
||||
"85:class_g = 'XTerm'",
|
||||
"0:_NET_WM_STATE@:32a * = '_NET_WM_STATE_HIDDEN'"
|
||||
"85:class_g *?= 'xterm'",
|
||||
"0:_NET_WM_STATE@:32a * = '_NET_WM_STATE_HIDDEN'"
|
||||
];
|
||||
|
||||
shadow-exclude = [
|
||||
"name *?= 'Notification'",
|
||||
"class_g *?= 'VirtualBox'",
|
||||
"class_g *?= 'Conky'",
|
||||
"class_g *?= 'Notify-osd'",
|
||||
"class_g *?= 'cairo-dock'",
|
||||
"class_g *?= 'trayer'",
|
||||
"class_g *?= 'i3-frame'",
|
||||
"class_g *?= 'firefox'",
|
||||
"class_g *?= 'navigator'",
|
||||
"class_g *?= 'Cairo-clock'",
|
||||
"class_g *?= 'Cairo-dock'",
|
||||
"class_g *?= 'plank'",
|
||||
"class_g *?= 'Docky'",
|
||||
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
"name *?= 'Notification'",
|
||||
"class_g *?= 'VirtualBox'",
|
||||
"class_g *?= 'Conky'",
|
||||
"class_g *?= 'Notify-osd'",
|
||||
"class_g *?= 'cairo-dock'",
|
||||
"class_g *?= 'trayer'",
|
||||
"class_g *?= 'i3-frame'",
|
||||
"class_g *?= 'firefox'",
|
||||
"class_g *?= 'navigator'",
|
||||
"class_g *?= 'Cairo-clock'",
|
||||
"class_g *?= 'Cairo-dock'",
|
||||
"class_g *?= 'plank'",
|
||||
"class_g *?= 'Docky'",
|
||||
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
];
|
||||
#"85:class_g *?= 'xterm'",
|
||||
#"90:class_g *?= 'rofi'",
|
||||
#"99:class_g *?= 'chrome'",
|
||||
#"99:class_g *?= 'gimp'",
|
||||
#"99:class_g *?= 'steam'",
|
||||
#"99:class_g *?= 'qutebrowser'",
|
||||
#"99:class_g *?= 'mpv'",
|
||||
|
||||
focus-exclude = [
|
||||
"class_g *?= 'Cairo-clock'",
|
||||
"class_g *?= 'Virtualbox'",
|
||||
"class_g *?= 'trayer'",
|
||||
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
|
||||
"name *?= 'Authy'"
|
||||
];
|
||||
#"class_g *?= 'steam'",
|
||||
#"class_g *?= 'chrome'",
|
||||
#"class_g *?= 'gimp'",
|
||||
#"class_g *?= 'qutebrowser'",
|
||||
#"class_g *?= 'mpv'",
|
||||
|
||||
invert-color-include = [
|
||||
"class_g *?= 'Cairo-clock'",
|
||||
"class_g *?= 'Virtualbox'",
|
||||
"class_g *?= 'trayer'",
|
||||
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
|
||||
"name *?= 'Authy'"
|
||||
];
|
||||
|
||||
fade-exclude = [
|
||||
];
|
||||
|
||||
# Window type settings
|
||||
wintypes:
|
||||
{
|
||||
tooltip = { fade = true; shadow = true; focus = true; };
|
||||
tooltip = { fade = true; shadow = true; focus = true; };
|
||||
};
|
||||
|
@ -15,6 +15,7 @@
|
||||
# Xresources var value fallback
|
||||
set_from_resource $bg background #19043C
|
||||
set_from_resource $fg foreground #F1F1F1
|
||||
set_from_resource $black color0 #19043C
|
||||
set_from_resource $red color1 #EE79A9
|
||||
set_from_resource $green color2 #8C9440
|
||||
set_from_resource $yellow color3 #DE935F
|
||||
@ -22,10 +23,8 @@ set_from_resource $blue color4 #05C6F1
|
||||
set_from_resource $purple color5 #85678F
|
||||
set_from_resource $cyan color6 #5E8D87
|
||||
set_from_resource $grey color7 #969CD3
|
||||
set_from_resource $white color15 #F1F1F1
|
||||
set_from_resource $black color0 #19043C
|
||||
|
||||
# class bd bg txt ind child_bordr
|
||||
# class bd bg txt ind child_bd
|
||||
client.focused $grey $bg $fg $blue $grey
|
||||
client.unfocused $grey $bg $black $bg $bg
|
||||
client.focused_inactive $grey $bg $black $bg $bg
|
||||
|
@ -7,14 +7,15 @@
|
||||
do_setup() {
|
||||
keys=('AEFB411B072836CD48FF0381AE252C284B5DBA5D'
|
||||
'9E4F11C6A072942A7B3FD3B0B81EB14A09A25EB0'
|
||||
'35F52A02854DCCAEC9DD5CC410443C7F54B00041')
|
||||
'35F52A02854DCCAEC9DD5CC410443C7F54B00041'
|
||||
)
|
||||
sudo dirmngr </dev/null
|
||||
sudo pacman-key --init
|
||||
sudo pacman-key --populate archlinux
|
||||
for k in ${keys[@]}; do
|
||||
if ! sudo pacman-key --list-keys | grep -q $k; then
|
||||
gpg --receive-keys $k
|
||||
sudo pacman-key -r $k
|
||||
for k in "${keys[@]}"; do
|
||||
if ! grep -q "$k" <<< "$(sudo pacman-key --list-keys)"; then
|
||||
gpg --receive-keys "$k"
|
||||
sudo pacman-key -r "$k"
|
||||
fi
|
||||
done
|
||||
sudo pacman-key --populate archlabs
|
||||
@ -25,5 +26,5 @@ while ! [[ "$(ping -c1 8.8.8.8)" ]]; do
|
||||
done
|
||||
|
||||
do_setup
|
||||
sed -i '/keypack/d' $HOME/.config/openbox/autostart
|
||||
rm -f $HOME/.config/keypack
|
||||
sed -i '/keypack/d' "$HOME/.config/openbox/autostart"
|
||||
rm -f "$HOME/.config/keypack"
|
||||
|
@ -38,7 +38,7 @@ print_info() {
|
||||
# info "Disk" disk
|
||||
# info "Battery" battery
|
||||
# info "Font" font
|
||||
info "Song" song
|
||||
# info "Song" song
|
||||
# info "Local IP" local_ip
|
||||
# info "Public IP" public_ip
|
||||
# info "Users" users
|
||||
|
4
home/.config/openbox/autostart
Executable file → Normal file
4
home/.config/openbox/autostart
Executable file → Normal file
@ -1,9 +1,9 @@
|
||||
# launch compton if enabled
|
||||
# compton
|
||||
al-compositor --start &
|
||||
|
||||
#$HOME/.config/setup &
|
||||
# enable numlock, commented out for laptop users
|
||||
#numlockx on &
|
||||
# numlockx &
|
||||
|
||||
# restore wallpaper
|
||||
nitrogen --restore &
|
||||
|
@ -16,5 +16,3 @@ export DE="xfce"
|
||||
if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
|
||||
eval `dbus-launch --sh-syntax --exit-with-session`
|
||||
fi
|
||||
|
||||
QT_QPA_PLATFORMTHEME=qt5ct
|
||||
|
0
home/.config/polybar/config
Executable file → Normal file
0
home/.config/polybar/config
Executable file → Normal file
@ -3,18 +3,19 @@
|
||||
# this script will setup configs for any user created from /etc/skel
|
||||
# if this is not run immediately at startup, polybar WILL fail to load
|
||||
|
||||
files=($HOME/.config/polybar/config
|
||||
$HOME/.config/polybar/sessions/i3-sessionfile
|
||||
$HOME/.config/polybar/sessions/bspwm-sessionfile
|
||||
$HOME/.config/polybar/sessions/openbox-sessionfile
|
||||
$HOME/.config/gtk-3.0/bookmarks
|
||||
$HOME/.gorice/templates/i3/data.json
|
||||
$HOME/.mozilla/firefox/archlabs.default/prefs.js
|
||||
$HOME/.mozilla/firefox/archlabs.default/sessionstore.js)
|
||||
files=("$HOME/.config/polybar/config"
|
||||
"$HOME/.config/polybar/sessions/i3-sessionfile"
|
||||
"$HOME/.config/polybar/sessions/bspwm-sessionfile"
|
||||
"$HOME/.config/polybar/sessions/openbox-sessionfile"
|
||||
"$HOME/.config/gtk-3.0/bookmarks"
|
||||
"$HOME/.gorice/templates/i3/data.json"
|
||||
"$HOME/.mozilla/firefox/archlabs.default/prefs.js"
|
||||
"$HOME/.mozilla/firefox/archlabs.default/sessionstore.js"
|
||||
)
|
||||
|
||||
for f in ${files[@]}; do
|
||||
sed -i "s/liveuser/${USER}/g" $f
|
||||
for f in "${files[@]}"; do
|
||||
sed -i "s/liveuser/${USER}/g" "$f"
|
||||
done
|
||||
|
||||
sed -i '/setup/d' $HOME/.config/openbox/autostart
|
||||
rm -f $HOME/.config/setup
|
||||
sed -i '/setup/d' "$HOME/.config/openbox/autostart"
|
||||
rm -f "$HOME/.config/setup"
|
||||
|
0
home/.config/termite/config
Executable file → Normal file
0
home/.config/termite/config
Executable file → Normal file
2
home/.config/tint2/default.tint2rc
Executable file → Normal file
2
home/.config/tint2/default.tint2rc
Executable file → Normal file
@ -214,7 +214,7 @@ ac_disconnected_cmd =
|
||||
button = new
|
||||
button_icon = /usr/share/icons/ArchLabs-Dark/32x32/places/distributor-logo-archlabs.png
|
||||
button_text =
|
||||
button_lclick_command= jgmenu_run lx
|
||||
button_lclick_command= jgmenu_run
|
||||
button_rclick_command= exo-open ~/.config/jgmenu/jgmenurc
|
||||
button_mclick_command=
|
||||
button_uwheel_command=
|
||||
|
2
home/.config/tint2/tint2rc
Executable file → Normal file
2
home/.config/tint2/tint2rc
Executable file → Normal file
@ -214,7 +214,7 @@ ac_disconnected_cmd =
|
||||
button = new
|
||||
button_icon = /usr/share/icons/ArchLabs-Dark/32x32/places/distributor-logo-archlabs.png
|
||||
button_text =
|
||||
button_lclick_command= jgmenu_run lx
|
||||
button_lclick_command= jgmenu_run
|
||||
button_rclick_command= exo-open ~/.config/jgmenu/jgmenurc
|
||||
button_mclick_command=
|
||||
button_uwheel_command=
|
||||
|
0
home/.config/xfce4/al-xfce-configs/helpers.rc
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/helpers.rc
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/panel/whiskermenu-1.rc
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/panel/whiskermenu-1.rc
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/keyboards.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/keyboards.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/thunar.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/thunar.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-desktop.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-desktop.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-panel.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-panel.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-session.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfce4-session.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfwm4.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xfwm4.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xsettings.xml
Executable file → Normal file
0
home/.config/xfce4/al-xfce-configs/xfconf/xfce-perchannel-xml/xsettings.xml
Executable file → Normal file
0
home/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
Executable file → Normal file
0
home/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
Executable file → Normal file
@ -1,28 +1,45 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# ~/.xinitrc
|
||||
# Executed by startx
|
||||
# Executed by startx
|
||||
# By calling this with arguments we can start different sessions
|
||||
# eg. startx ~/.xinitrc i3 or startx ~/.xinitrc bspwm
|
||||
# simply using startx, openbox is set as the default
|
||||
|
||||
session=${1:-openbox}
|
||||
export WM="$session"
|
||||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
export PATH=/home/smoke/bin:/usr/sbin:$PATH
|
||||
|
||||
# source files in /etc/X11/xinit/xinitrc.d
|
||||
|
||||
if [ -f /etc/X11/xinit/.Xmodmap ]; then
|
||||
xmodmap /etc/X11/xinit/.Xmodmap
|
||||
fi
|
||||
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
||||
for f in /etc/X11/xinit/xinitrc.d/*; do
|
||||
for f in /etc/X11/xinit/xinitrc.d/*.sh; do
|
||||
[ -x "$f" ] && . "$f"
|
||||
done
|
||||
unset f
|
||||
fi
|
||||
|
||||
# this must be before the 'exec' command
|
||||
# it sources ~/.xprofile for additional settings
|
||||
[ -f ~/.xprofile ] && . ~/.xprofile
|
||||
if [ -f ~/.Xresources ]; then
|
||||
xrdb -load ~/.Xresources
|
||||
fi
|
||||
if [ -f ~/.Xmodmap ]; then
|
||||
xmodmap ~/.Xmodmap
|
||||
fi
|
||||
if [ -f ~/.xprofile ]; then
|
||||
. ~/.xprofile
|
||||
fi
|
||||
|
||||
gnome-keyring-daemon --start --components=pkcs11 &
|
||||
lxpolkit &
|
||||
kbdrate -d 400 -r 50
|
||||
xset r rate 400 50
|
||||
xset s 3600 3600
|
||||
|
||||
# start the session
|
||||
case $session in
|
||||
i3|i3wm)
|
||||
i3|i3wm)
|
||||
exec i3
|
||||
;;
|
||||
bsp|bspwm)
|
||||
@ -31,13 +48,12 @@ case $session in
|
||||
awesome)
|
||||
exec awesome
|
||||
;;
|
||||
xfce|xfce4)
|
||||
xfce|xfce4)
|
||||
exec startxfce4
|
||||
;;
|
||||
openbox|openbox-session)
|
||||
openbox|openbox-session)
|
||||
exec openbox-session
|
||||
;;
|
||||
*)
|
||||
exec $1
|
||||
;;
|
||||
*)
|
||||
exec "$1"
|
||||
esac
|
||||
|
118
upgrade-archlabs
118
upgrade-archlabs
@ -6,41 +6,31 @@
|
||||
# Written by Nathaniel Maia <natemaia10@gmail.com>
|
||||
#
|
||||
|
||||
yes="y"
|
||||
no="n"
|
||||
REPO='
|
||||
REPOS='
|
||||
[archlabs_repo]
|
||||
Server = https://archlabs.github.io/archlabs_repo/$arch
|
||||
Server = https://downloads.sourceforge.net/project/archlabs-repo/archlabs_repo/$arch'
|
||||
|
||||
HFILES=("$HOME/bin" "$HOME/.config" "$HOME/.themes" "$HOME/.gtkrc-2.0"
|
||||
"$HOME/.gorice" "$HOME/.Xresources" "$HOME/.Xresources.template"
|
||||
"$HOME/.mozilla" "$HOME/.zshrc" "$HOME/.bashrc" "$HOME/.icons"
|
||||
"$HOME/.local" "$HOME/.xprofile" "$HOME/.xserverrc" "$HOME/.xinitrc")
|
||||
HOME_FILES=("$HOME/bin" "$HOME/.config" "$HOME/.themes"
|
||||
"$HOME/.gorice" "$HOME/.Xresources" "$HOME/.Xresources.template"
|
||||
"$HOME/.mozilla" "$HOME/.zshrc" "$HOME/.bashrc"
|
||||
"$HOME/.local" "$HOME/.xprofile" "$HOME/.xinitrc"
|
||||
"$HOME/.icons" "$HOME/.gtkrc-2.0"
|
||||
)
|
||||
|
||||
CFILES=("$HOME/.config/awesome" "$HOME/.config/jgmenu" "$HOME/.config/bspwm"
|
||||
"$HOME/.config/dunst" "$HOME/.config/i3" "$HOME/.config/obmenu-generator"
|
||||
"$HOME/.config/qt5ct" "$HOME/.config/Thunar" "$HOME/.config/conky"
|
||||
"$HOME/.config/geany" "$HOME/.config/neofetch" "$HOME/.config/polybar"
|
||||
"$HOME/.config/termite" "$HOME/.config/xfce4" "$HOME/.config/openbox"
|
||||
"$HOME/.config/ob-autostart")
|
||||
SKEL_FILES=('/etc/skel/bin' '/etc/skel/.config' '/etc/skel/.themes'
|
||||
'/etc/skel/.Xresources' '/etc/skel/.gorice' '/etc/skel/.icons'
|
||||
'/etc/skel/.gtkrc-2.0' '/etc/skel/.xprofile' '/etc/skel/.xinitrc'
|
||||
'/etc/skel/.mozilla' '/etc/skel/.Xresources.template'
|
||||
)
|
||||
|
||||
SFILES=('/etc/skel/bin' '/etc/skel/.config' '/etc/skel/.themes' '/etc/skel/.gorice'
|
||||
'/etc/skel/.Xresources' '/etc/skel/.Xresources.template' '/etc/skel/.mozilla'
|
||||
'/etc/skel/.zshrc' '/etc/skel/.bashrc' '/etc/skel/.icons' '/etc/skel/.local'
|
||||
'/etc/skel/.xprofile' '/etc/skel/.xserverrc' '/etc/skel/.xinitrc' '/etc/skel/.gtkrc-2.0')
|
||||
|
||||
KEYS=('AEFB411B072836CD48FF0381AE252C284B5DBA5D'
|
||||
'9E4F11C6A072942A7B3FD3B0B81EB14A09A25EB0'
|
||||
'35F52A02854DCCAEC9DD5CC410443C7F54B00041')
|
||||
|
||||
WMS=(bspwm i3 openbox)
|
||||
for i in ${WMS[@]}; do
|
||||
WMS=(i3 openbox)
|
||||
for i in "${WMS[@]}"; do
|
||||
if [[ "$(wmctrl -m | grep -i name | awk '{print tolower($2)}')" == "$i" ]]; then
|
||||
WM=$i && break
|
||||
elif [[ "$(xprop -root -notype | grep "WM_NAME =" | tr -d '"' | awk '{print tolower($3)}')" == "$i" ]]; then
|
||||
WM=$i && break
|
||||
elif [[ "$(awk '{print tolower($0)}' <<< $XDG_CURRENT_DESKTOP)" == "$i" ]]; then
|
||||
elif [[ "$(awk '{print tolower($0)}' <<< "$XDG_CURRENT_DESKTOP")" == "$i" ]]; then
|
||||
WM=$i && break
|
||||
fi
|
||||
done
|
||||
@ -51,76 +41,74 @@ while ! [[ $(ping -c1 8.8.8.8) ]]; do
|
||||
clear; sleep 1
|
||||
done
|
||||
|
||||
setupKeyring() {
|
||||
setup_keyring() {
|
||||
KEYS=('AEFB411B072836CD48FF0381AE252C284B5DBA5D'
|
||||
'9E4F11C6A072942A7B3FD3B0B81EB14A09A25EB0'
|
||||
'35F52A02854DCCAEC9DD5CC410443C7F54B00041'
|
||||
)
|
||||
sudo dirmngr </dev/null
|
||||
sudo pacman-key --init
|
||||
sudo pacman-key --populate archlinux
|
||||
for key in ${KEYS[@]}; do
|
||||
if ! sudo pacman-key --list-keys | grep $key > /dev/null 2>&1; then
|
||||
gpg --receive-keys $key
|
||||
sudo pacman-key -r $key
|
||||
for key in "${KEYS[@]}"; do
|
||||
if ! grep -q "$key" <<< "$(sudo pacman-key --list-keys)"; then
|
||||
gpg --receive-keys "$key"
|
||||
sudo pacman-key -r "$key"
|
||||
fi
|
||||
done
|
||||
sudo pacman -S archlabs-keyring --needed --noconfirm
|
||||
sudo pacman-key --populate archlabs
|
||||
|
||||
if grep "archlabs_repo" /etc/pacman.conf > /dev/null 2>&1; then
|
||||
if grep -q "archlabs_repo" /etc/pacman.conf; then
|
||||
sudo sed -i '/archlabs_repo/d' /etc/pacman.conf
|
||||
fi
|
||||
echo $REPO | sudo tee -a /etc/pacman.conf > /dev/null 2>&1
|
||||
echo "$REPOS" | sudo tee -a /etc/pacman.conf >/dev/null 2>&1
|
||||
}
|
||||
|
||||
backupConfigs() {
|
||||
if ! [ -e "$HOME/Downloads/$USER-backup.tar.gz" ]; then
|
||||
tar czvf $HOME/Downloads/$USER-backup.tar.gz ${HFILES[@]} > /dev/null 2>&1
|
||||
backup_configs() {
|
||||
if ! [[ -e "$HOME/Downloads/$USER-backup.tar.gz" ]]; then
|
||||
tar czvf "$HOME/Downloads/$USER-backup.tar.gz" "${HOME_FILES[@]}" >/dev/null 2>&1
|
||||
else
|
||||
echo "[WARNING] Backup already exists... Not overwriting"
|
||||
sleep 2
|
||||
fi
|
||||
}
|
||||
|
||||
setupConfigs() {
|
||||
setup_configs() {
|
||||
sudo pacman -S clutter-gtk libgee archlabs-jgmenu --needed --noconfirm
|
||||
sudo pacman -S gdk-pixbuf2 pango python-yaml --needed --noconfirm
|
||||
rm -rf ${CFILES[@]}
|
||||
cp -rf ${SFILES[@]} /etc/skel/.zshrc /etc/skel/.bashrc $HOME/
|
||||
cp -rf "${SKEL_FILES[@]}" "$HOME/"
|
||||
cp -f /etc/skel/.{bashrc,zshrc} "$HOME/"
|
||||
}
|
||||
|
||||
new_configs() {
|
||||
clear
|
||||
printf "\nThis step will get the latest configs for polybar, openbox, i3 etc.
|
||||
\n\nYour existing configs will be archived to:
|
||||
\n\t$HOME/Downloads/$USER-backup.tar.gz\n\n\n\nDo you want to continue? [y/N]:"
|
||||
read -r answer
|
||||
|
||||
case "$answer" in
|
||||
y|yes|Y|YES)
|
||||
backup_configs
|
||||
if [[ -e $HOME/Downloads/$USER-backup.tar.gz ]]; then
|
||||
setup_configs
|
||||
fi
|
||||
rm -f "$HOME/.config/keypack"
|
||||
sed -i '/keypack/d' "$HOME/.config/openbox/autostart"
|
||||
~/.config/setup
|
||||
esac
|
||||
}
|
||||
|
||||
|
||||
# first setup Keyring
|
||||
setupKeyring
|
||||
|
||||
# make sure skel package is installed and updated
|
||||
if ! pacman -Q archlabs-user-skel >/dev/null 2>&1; then
|
||||
sudo rm -rf ${SFILES[@]}
|
||||
sudo rm -rf "${SKEL_FILES[@]}"
|
||||
sudo pacman -S archlabs-user-skel --needed --noconfirm
|
||||
else
|
||||
sudo pacman -Syyu --noconfirm
|
||||
fi
|
||||
|
||||
|
||||
clear
|
||||
printf "\nThis step will get the latest configs for polybar, openbox, i3 etc.
|
||||
\n\nYour existing configs will be archived to:
|
||||
\n\t$HOME/Downloads/$USER-backup.tar.gz\n\n\n\nDo you want to continue? [y/N]:"
|
||||
read -r answer
|
||||
|
||||
if [ "${answer,,}" = "${yes,,}" ]; then
|
||||
backupConfigs
|
||||
if [ -e "$HOME/Downloads/$USER-backup.tar.gz" ]; then
|
||||
setupConfigs
|
||||
fi
|
||||
|
||||
rm -f $HOME/.config/keypack
|
||||
sed -i '/keypack/d' $HOME/.config/openbox/autostart
|
||||
$HOME/.config/setup
|
||||
|
||||
if [[ "$WM" == "i3" ]]; then
|
||||
i3-msg restart
|
||||
elif [[ "$WM" == "openbox" ]]; then
|
||||
al-polybar-session -r
|
||||
fi
|
||||
fi
|
||||
new_configs
|
||||
|
||||
clear
|
||||
echo "##########################################################
|
||||
|
Reference in New Issue
Block a user