mirror of https://gitlab.com/dabruh/dotfiles.git
Arch: add dunst, implement pip.
This commit is contained in:
parent
b69379d74e
commit
ecbc619380
|
@ -1,8 +1,8 @@
|
|||
pacman-any:i3-gaps,feh,i3status,network-manager-applet,pasystray,xautolock,inotify-tools,xss-lock,noto-fonts-emoji
|
||||
pacman-any:gst-libav,phonon-qt5-gstreamer,gst-plugins-good,qt5-quickcontrols,qt5-graphicaleffects,qt5-multimedia
|
||||
pacman-any:code,vim,ufw,scrot
|
||||
pacman-any:code,vim,ufw,scrot,dunst
|
||||
pacman-laptop:brightnessctl
|
||||
aur-any:picom-git,flashfocus-git,sddm-theme-aerial-git
|
||||
aur-any:picom-git,sddm-theme-aerial-git
|
||||
|
||||
apt-any:i3-gaps,feh,i3status,nm-tray,pasystray,xautolock,inotify-tools,xss-lock,fonts-noto-color-emoji,xclip
|
||||
apt-any: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,meson
|
||||
|
|
|
@ -92,6 +92,14 @@ function setup_arch_with_yay() {
|
|||
done
|
||||
}
|
||||
|
||||
function setup_arch_with_pip(){
|
||||
local targets=("pip-any") packages
|
||||
|
||||
packages="$(get_packages "${targets[@]}")"
|
||||
# shellcheck disable=SC2086
|
||||
sudo pip3 install $packages --no-input || return 1
|
||||
}
|
||||
|
||||
function install_sddm_aerial_theme() {
|
||||
local theme_dir="/usr/share/sddm/themes/aerial"
|
||||
|
||||
|
@ -143,8 +151,9 @@ function setup_arch() {
|
|||
prepare_arch || return 1
|
||||
setup_arch_with_pamac || return 2
|
||||
setup_arch_with_yay || return 3
|
||||
configure_sddm || return 4
|
||||
configure_ufw || return 5
|
||||
setup_arch_with_pip || return 4
|
||||
configure_sddm || return 5
|
||||
configure_ufw || return 6
|
||||
}
|
||||
|
||||
function setup_debian_repo_i3gaps() {
|
||||
|
|
Loading…
Reference in New Issue