Updates
This commit is contained in:
parent
8e13bb968c
commit
72adca6bb8
|
@ -89,7 +89,7 @@ override-redirect = true
|
|||
type = internal/fs
|
||||
interval = 25
|
||||
|
||||
mount-0 = ${env:BAR_FS_VOLUME}
|
||||
mount-0 = ${env:BAR_FS_VOLUME:/}
|
||||
|
||||
format = <label-mounted>
|
||||
label-mounted = %free%
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
## *letterSpace: 0
|
||||
|
||||
## Set fonts in "$HOME/.Xresources.env"
|
||||
URxvt.font: xft:Iosevka:pixelsize=14,xft:Noto Emoji,xft:Font Awesome 5 Free:pixelsize=14,xft:FreeSans:pixelsize=14
|
||||
URxvt.faceName: xft:Iosevka:pixelsize=14,xft:Font Awesome 5 Free:pixelsize=14,xft:FreeSans:pixelsize=14
|
||||
URxvt.boldFont: xft:Iosevka:pixelsize=14:style=bold,xft:Font Awesome 5 Free:pixelsize=14,xft:FreeSans:pixelsize=14
|
||||
URxvt.font: xft:Iosevka Term:pixelsize=14,xft:Noto Emoji,xft:Font Awesome 5 Free:pixelsize=14,xft:FreeSans:pixelsize=14
|
||||
URxvt.faceName: xft:Iosevka Term:pixelsize=14,xft:Font Awesome 5 Free:pixelsize=14,xft:FreeSans:pixelsize=14
|
||||
:x
|
||||
# URxvt.transparent: true
|
||||
# URxvt.shading: 70
|
||||
URxvt.letterSpace: 0
|
||||
|
|
|
@ -5,21 +5,20 @@
|
|||
# installs pacaur on a fresh arch install
|
||||
|
||||
# install the dependencies
|
||||
sudo pacman -S git curl openssl perl expac yajl --noconfirm
|
||||
|
||||
# receive cower's gpg key
|
||||
# gpg --recv-keys 1EB2638FF56C0C53
|
||||
sudo pacman -S git curl openssl perl expac yajl meson gmock gtest --noconfirm
|
||||
|
||||
# setup a temporary place to install the packages from
|
||||
REPOSITORY_PATH="/tmp/provisioning"
|
||||
mkdir -p "$REPOSITORY_PATH"
|
||||
|
||||
# clone the repositories
|
||||
git clone https://aur.archlinux.org/cower.git "$REPOSITORY_PATH/cower"
|
||||
rm -rf "$REPOSITORY_PATH/auracle-git"
|
||||
rm -rf "$REPOSITORY_PATH/pacaur"
|
||||
git clone https://aur.archlinux.org/auracle-git.git "$REPOSITORY_PATH/auracle-git"
|
||||
git clone https://aur.archlinux.org/pacaur.git "$REPOSITORY_PATH/pacaur"
|
||||
|
||||
# build and install cower
|
||||
cd "$REPOSITORY_PATH/cower"
|
||||
# build and install auracle
|
||||
cd "$REPOSITORY_PATH/auracle-git"
|
||||
makepkg -i --noconfirm
|
||||
cd -
|
||||
|
||||
|
@ -28,5 +27,10 @@ cd "$REPOSITORY_PATH/pacaur"
|
|||
makepkg -i --noconfirm
|
||||
cd -
|
||||
|
||||
# cleanup
|
||||
rm -rf "$REPOSITORY_PATH/auracle-git"
|
||||
rm -rf "$REPOSITORY_PATH/pacaur"
|
||||
|
||||
# once installed, let the package manager manage itself and its dependencies
|
||||
pacaur -S cower pacaur --noconfirm --noedit
|
||||
pacaur -S auracle-git pacaur --noconfirm --noedit
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ pacaur --needed -S \
|
|||
openssh `# Remote Access` \
|
||||
openssl `# Crypto` \
|
||||
elixir `# Elixir Language` \
|
||||
nodejs npm yarn `# Language` \
|
||||
nodejs npm yarn `# JavaScript Runtime` \
|
||||
python python-pip `# Python 3 Language` \
|
||||
pass `# Password Management` \
|
||||
firefox-developer-edition `# Default Web Browser` \
|
||||
|
@ -23,7 +23,7 @@ pacaur --needed -S \
|
|||
pulseaudio pavucontrol `# Audio Backend and Controls` \
|
||||
pulseaudio-ctl `# CLI Utility for Pulseaudio` \
|
||||
neovim vim `# Text Editors` \
|
||||
unzip `# Handy Utility for ZIP Files` \
|
||||
unzip `# Simple Unzipping` \
|
||||
xclip xsel `# X Selection & Clipboard Management` \
|
||||
autocutsel `# Clipboard Helper` \
|
||||
tmux `# Terminal Multiplexer` \
|
||||
|
@ -37,11 +37,12 @@ pacaur --needed -S \
|
|||
gtk-engine-murrine xorg-server-devel `# GTK Theme Base and Headers?` \
|
||||
bspwm-git sxhkd-git xdo-git `# Window Manager and Tools for its use` \
|
||||
wlroots-git sway-git `# Wayland Compositor` \
|
||||
terminus-font ttf-iosevka-pack `# Primary Fonts` \
|
||||
terminus-font ttf-iosevka-type ttf-iosevka-term `# Primary Fonts` \
|
||||
ttf-font-awesome `# Icon Font` \
|
||||
curl `# HTTP Utility` \
|
||||
w3m `# Viewing Images in Terminals` \
|
||||
jq `# CLI for Interacting with JSON` \
|
||||
ranger `# CLI File Manager` \
|
||||
bash-completion `# Handy Scripts for Tab-Completion in Bash` \
|
||||
--noconfirm --noedit
|
||||
|
||||
|
|
|
@ -1,7 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if egrep -q '^\[multilib\]$' /etc/pacman.conf; then
|
||||
echo "Multilib Repository Already Enabled!"
|
||||
else
|
||||
echo "Enabling Multilib Repository (with sudo)..."
|
||||
sudo sh -c 'echo -e "\n\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf'
|
||||
pacaur -Syy
|
||||
fi
|
||||
|
||||
pacaur --needed -S \
|
||||
arc-gtk-theme-git `# GTK Theme` \
|
||||
arc-gtk-theme `# GTK Theme` \
|
||||
elementary-icon-theme `# GUI File Explorer Icons` \
|
||||
thunar thunar-volman gvfs `# GUI File Explorer + Volume Management/Auto-Mount Disks)` \
|
||||
samba `# Sharing Files with other (Windows) PCs` \
|
||||
|
@ -23,7 +31,13 @@ pacaur --needed -S \
|
|||
neofetch `# swag` \
|
||||
cloc `# For counting lines of code` \
|
||||
ttf-noto-fonts-simple ttf-noto-fonts-ib noto-fonts-emoji `# Emoji` \
|
||||
siji-git gohufont artwiz-fonts phallus-fonts-git `# Bitmap Fonts` \
|
||||
siji-git gohufont artwiz-fonts `# Bitmap Fonts` \
|
||||
autorandr `# Monitor Helper` \
|
||||
docker `# Containers` \
|
||||
keybase keybase-gui kbfs `# Keybase Applications` \
|
||||
discord `# Chat` \
|
||||
steam steamcmd lutris `# Games` \
|
||||
gnome-shell `# Guh-nome Guh-shell` \
|
||||
redshift `# Save Your Eyes` \
|
||||
vlc `# Video Viewer` \
|
||||
--noconfirm --noedit
|
||||
|
|
2
scripts/arch-linux/provisioning/amd.bash
Normal file → Executable file
2
scripts/arch-linux/provisioning/amd.bash
Normal file → Executable file
|
@ -1,3 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# todo?
|
||||
pacaur --needed -S --noconfirm --noedit
|
||||
|
|
0
scripts/arch-linux/provisioning/irc.bash
Normal file → Executable file
0
scripts/arch-linux/provisioning/irc.bash
Normal file → Executable file
Reference in a new issue