Fix monitor problems
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
92c15e04d0
commit
be92d7f1b3
12 changed files with 149 additions and 128 deletions
87
install
87
install
|
@ -149,47 +149,47 @@ fi
|
|||
###############################################################################
|
||||
# Install package manager and packages #
|
||||
###############################################################################
|
||||
print_section "Installing package requirements"
|
||||
sudo pacman -S sudo ccache git base-devel --noconfirm --needed
|
||||
# print_section "Installing package requirements"
|
||||
# sudo pacman -S sudo ccache git base-devel --noconfirm --needed
|
||||
|
||||
print_section "Installing yay"
|
||||
is_yay_installed=$(command -v yay)
|
||||
# print_section "Installing yay"
|
||||
# is_yay_installed=$(command -v yay)
|
||||
|
||||
# Install yay if not already installed
|
||||
if [ -z "${is_yay_installed}" ]; then
|
||||
git clone https://aur.archlinux.org/yay.git
|
||||
(
|
||||
cd yay || exit
|
||||
makepkg -si --noconfirm --skippgpcheck
|
||||
)
|
||||
rm -rf yay
|
||||
else
|
||||
print_log "yay is already installed"
|
||||
fi
|
||||
# # Install yay if not already installed
|
||||
# if [ -z "${is_yay_installed}" ]; then
|
||||
# git clone https://aur.archlinux.org/yay.git
|
||||
# (
|
||||
# cd yay || exit
|
||||
# makepkg -si --noconfirm --skippgpcheck
|
||||
# )
|
||||
# rm -rf yay
|
||||
# else
|
||||
# print_log "yay is already installed"
|
||||
# fi
|
||||
|
||||
print_section "Installing native packages"
|
||||
# List created using: yay -Qqen > packages.native.list
|
||||
package_count=$(< "${PACKAGES_DIR}/packages.native.list" wc -l)
|
||||
print_log "Installing ${package_count} packages"
|
||||
yay -Syy > /dev/null 2>&1
|
||||
yay -S --noconfirm --sudoloop --needed --devel --nopgpfetch --mflags --skippgpcheck - < "${PACKAGES_DIR}/packages.native.list"
|
||||
# print_section "Installing native packages"
|
||||
# # List created using: yay -Qqen > packages.native.list
|
||||
# package_count=$(< "${PACKAGES_DIR}/packages.native.list" wc -l)
|
||||
# print_log "Installing ${package_count} packages"
|
||||
# yay -Syy > /dev/null 2>&1
|
||||
# yay -S --noconfirm --sudoloop --needed --devel --nopgpfetch --mflags --skippgpcheck - < "${PACKAGES_DIR}/packages.native.list"
|
||||
|
||||
print_section "Installing Rust toolchain and components"
|
||||
rustup toolchain install beta
|
||||
rustup default beta
|
||||
rustup component add "${RUST_COMPONENTS[@]}"
|
||||
rustup default beta
|
||||
# print_section "Installing Rust toolchain and components"
|
||||
# rustup toolchain install beta
|
||||
# rustup default beta
|
||||
# rustup component add "${RUST_COMPONENTS[@]}"
|
||||
# rustup default beta
|
||||
|
||||
print_section "Installing AUR packages"
|
||||
package_count=$(< "${PACKAGES_DIR}/packages.aur.list" wc -l)
|
||||
# List created using: yay -Qqem > packages.aur.list
|
||||
print_log "Installing ${package_count} packages"
|
||||
yay -Syy > /dev/null 2>&1
|
||||
yay -S --noconfirm --sudoloop --needed --devel --nopgpfetch --mflags --skippgpcheck - < "${PACKAGES_DIR}/packages.aur.list"
|
||||
# print_section "Installing AUR packages"
|
||||
# package_count=$(< "${PACKAGES_DIR}/packages.aur.list" wc -l)
|
||||
# # List created using: yay -Qqem > packages.aur.list
|
||||
# print_log "Installing ${package_count} packages"
|
||||
# yay -Syy > /dev/null 2>&1
|
||||
# yay -S --noconfirm --sudoloop --needed --devel --nopgpfetch --mflags --skippgpcheck - < "${PACKAGES_DIR}/packages.aur.list"
|
||||
|
||||
print_section "Installing global npm packages"
|
||||
print_log "Installing ${#NPM_PACKAGES[@]} packages"
|
||||
npm i -g "${NPM_PACKAGES[@]}"
|
||||
# print_section "Installing global npm packages"
|
||||
# print_log "Installing ${#NPM_PACKAGES[@]} packages"
|
||||
# npm i -g "${NPM_PACKAGES[@]}"
|
||||
|
||||
###############################################################################
|
||||
# Creating directories #
|
||||
|
@ -197,10 +197,10 @@ npm i -g "${NPM_PACKAGES[@]}"
|
|||
print_section "Creating directories"
|
||||
|
||||
for dir in "${DIRECTORIES[@]}"
|
||||
do
|
||||
print_log "Creating directory ${YELLOW}${HOME}/${dir}${RESET}"
|
||||
mkdir -p "${HOME}/${dir}"
|
||||
done
|
||||
do
|
||||
print_log "Creating directory ${YELLOW}${HOME}/${dir}${RESET}"
|
||||
mkdir -p "${HOME}/${dir}"
|
||||
done
|
||||
|
||||
if [ "${IS_WORK}" = "1" ]; then
|
||||
for dir in "${WORK_DIRECTORIES[@]}"
|
||||
|
@ -330,10 +330,12 @@ sudo install -Dm 644 "${SYSTEM_DIR}/etc/zsh/zshenv" "/etc/zsh"
|
|||
print_log "Copying pacman.conf to ${YELLOW}/etc/pacman.conf${RESET}"
|
||||
sudo install -Dm 644 "${SYSTEM_DIR}/etc/pacman.conf" "/etc/pacman.conf"
|
||||
|
||||
print_log "Copying 00-keyboard.conf to ${YELLOW}/etc/X11/xorg.conf.d${RESET}"
|
||||
sudo install -Dm 644 "${SYSTEM_DIR}/etc/X11/xorg.conf.d/00-keyboard.conf" "/etc/X11/xorg.conf.d"
|
||||
sudo install -Dm 644 "${SYSTEM_DIR}/etc/X11/xorg.conf.d/00-keyboard.conf" "/etc/X11/nvidia-xorg.conf.d"
|
||||
|
||||
print_log "Copying 20-displaylink.conf to ${YELLOW}/etc/X11/xorg.conf.d${RESET}"
|
||||
sudo install -Dm 644 "${SYSTEM_DIR}/etc/X11/xorg.conf.d/20-displaylink.conf" "/etc/X11/xorg.conf.d"
|
||||
|
||||
print_log "Copying 20-displaylink.conf to ${YELLOW}/etc/X11/nvidia-xorg.conf.d${RESET}"
|
||||
sudo install -Dm 644 "${SYSTEM_DIR}/etc/X11/xorg.conf.d/20-displaylink.conf" "/etc/X11/nvidia-xorg.conf.d"
|
||||
|
||||
print_log "Copying vconsole.conf to ${YELLOW}/etc/vconsole.conf${RESET}"
|
||||
|
@ -342,6 +344,9 @@ sudo install -Dm 644 "${SYSTEM_DIR}/etc/vconsole.conf" "/etc/vconsole.conf"
|
|||
print_log "Copying mkinitcpio.conf to ${YELLOW}/etc/mkinitcpio.conf${RESET}"
|
||||
sudo install -Dm 644 "${SYSTEM_DIR}/etc/mkinitcpio.conf" "/etc/mkinitcpio.conf"
|
||||
|
||||
print_log "Copying resolvconf.conf to ${YELLOW}/etc/resolvconf.conf${RESET}"
|
||||
sudo install -Dm 644 "${SYSTEM_DIR}/etc/resolvconf.conf" "/etc/resolvconf.conf"
|
||||
|
||||
###############################################################################
|
||||
# Setting lockscreen image #
|
||||
###############################################################################
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue