Update dotenv

This commit is contained in:
2022-10-30 17:34:22 -07:00
parent e9458e3afa
commit bfabb100c3
2 changed files with 25 additions and 12 deletions

View File

@ -1,11 +1,13 @@
# TODO: Set cursor TODO: Set cursor
# TODO: Set Theme TODO: Set Theme
# pCloud pCloud
# Don't do VSCode as an AUR Don't do VSCode as an AUR
# KTorrent or alternative CTRL+F4 Default Shortcut
# Configure Google cloud Default NumLock On
# Parsec alternative Install G14 Tools
Configure Google cloud
Parsec alternative
Better Calculator Better Calculator
Way to deal with Kernel updates Way to deal with Kernel updates
KDE Connect? KDE Connect?
@ -20,7 +22,6 @@ TODO: Adjust what icons appear in the taskbar area (Both Near clock and in the l
Some kind if post-pcloud script? Some kind if post-pcloud script?
See if I can fix KDE Wallet (just remove the password) See if I can fix KDE Wallet (just remove the password)
Start in Wayland Start in Wayland
Fix SAMBA access to NAS
Wallpaper Wallpaper
Applications I'd like to have Applications I'd like to have

View File

@ -32,7 +32,8 @@ sudo pacman -S -q --noconfirm \
wget \ wget \
flatpak \ flatpak \
neovim \ neovim \
vim vim \
fuse
# Desktop Programs # Desktop Programs
echo -e "\n\n\nInstalling Pacman Desktop Programs\n\n\n" echo -e "\n\n\nInstalling Pacman Desktop Programs\n\n\n"
@ -61,7 +62,9 @@ sudo pacman -S -q --noconfirm \
ttc-iosevka \ ttc-iosevka \
bluedevil \ bluedevil \
noto-fonts \ noto-fonts \
noto-fonts-cjk noto-fonts-cjk \
avahi \
nss-mdns
# Install programs using flatpak # Install programs using flatpak
@ -76,7 +79,6 @@ flatpak install flathub \
org.gnome.gitlab.YaLTeR.VideoTrimmer \ org.gnome.gitlab.YaLTeR.VideoTrimmer \
com.orama_interactive.Pixelorama \ com.orama_interactive.Pixelorama \
com.uploadedlobster.peek \ com.uploadedlobster.peek \
#com.valvesoftware.steam \
--assumeyes --assumeyes
@ -135,6 +137,9 @@ chmod +x ./install.sh
./install.sh ./install.sh
cd .. cd ..
# Fix Dark Mode
gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
# Simp1e Cursors # Simp1e Cursors
git clone --recurse-submodules https://gitlab.com/zoli111/simp1e.git git clone --recurse-submodules https://gitlab.com/zoli111/simp1e.git
cd simp1e cd simp1e
@ -145,9 +150,16 @@ sudo pacman -S -q --noconfirm \
xorg-xcursorgen xorg-xcursorgen
./build.sh ./build.sh
mkdir ~/.icons
mv ./built_themes/* ~/.icons mv ./built_themes/* ~/.icons
cd .. cd ..
# Git Config # Git Config
git config --global user.name Dominic Masters git config --global user.name Dominic Masters
git config --global user.email dominic@domsplace.com git config --global user.email dominic@domsplace.com
# Get .local DNS hostnames to work
sudo sed -i 's/hosts\: mymachines resolve/hosts: mymachines resolve mdns_minimal/g' /etc/nsswitch.conf
sudo systemctl stop avahi-daemon
sudo systemctl start avahi-daemon
sudo systemctl enable avahi-daemon