Update dotenv

This commit is contained in:
2022-10-29 21:02:19 -07:00
parent 8c6be13b38
commit e9458e3afa
4 changed files with 66 additions and 25 deletions

1
.gitignore vendored
View File

@ -13,3 +13,4 @@ wget*
plasma-kickoff* plasma-kickoff*
Qogir* Qogir*
Qogir/* Qogir/*
visual-studio*

View File

@ -1,2 +1,32 @@
2 - Hide the Manjaro Hello (and disable launch at start?)
3 - Install Oracle Guest additions? May not be required for some archs # TODO: Set cursor
# TODO: Set Theme
# pCloud
# Don't do VSCode as an AUR
# KTorrent or alternative
# Configure Google cloud
# Parsec alternative
Better Calculator
Way to deal with Kernel updates
KDE Connect?
Yuzu / Cemu / Citra(?) / RCPS3
SSH(?)
Emoji Picker?
TODO: Set window switcher to "Thumbnail Grid"
TODO: Organize Application Icons
TODO: Adjust power settings
TODO: Make Steam and pCloud launch with system start
TODO: Adjust what icons appear in the taskbar area (Both Near clock and in the launcher)
Some kind if post-pcloud script?
See if I can fix KDE Wallet (just remove the password)
Start in Wayland
Fix SAMBA access to NAS
Wallpaper
Applications I'd like to have
Virtual Keyboard, with controller support
VLC
Elisa
!FreeTube
!OpenRGB
Balena Etcher

View File

@ -58,7 +58,10 @@ sudo pacman -S -q --noconfirm \
plasma-wayland-session \ plasma-wayland-session \
steam \ steam \
zip \ zip \
ttc-iosevka ttc-iosevka \
bluedevil \
noto-fonts \
noto-fonts-cjk
# Install programs using flatpak # Install programs using flatpak
@ -73,6 +76,7 @@ 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
@ -84,15 +88,6 @@ makepkg -si --noconfirm
cd .. cd ..
# pCloud
echo -e "\n\n\nInstalling pCloud\n\n\n"
if [ ! -f "~/Applications/pcloud" ]; then
wget https://p-def8.pcloud.com/cBZu1eKrMZMqwjTqZZZh9ILr7Z2ZZmNzZkZPF7pVZrHZrzZBpZpRZc5Z6pZopZ9pZApZGFZUJZkJZPpZkzZWTVkVZQDtD9nHvjKu7c1tTLeXYVj05EfNk/pcloud -O ~/Applications/pcloud
chmod +x ~/Applications/pcloud
~/Applications/pcloud &
fi
# PIA # PIA
echo -e "\n\n\nInstalling Private Internet Access\n\n\n" echo -e "\n\n\nInstalling Private Internet Access\n\n\n"
if ! command -v piactl &> /dev/null if ! command -v piactl &> /dev/null
@ -130,3 +125,29 @@ nvim +"PlugInstall --sync" +qa
cat ./configs/vimrc-config >> ~/.config/nvim/init.vim cat ./configs/vimrc-config >> ~/.config/nvim/init.vim
# Begin Plasma Configurations # Begin Plasma Configurations
systemctl enable bluetooth
systemctl start bluetooth
# Qogir
git clone https://github.com/vinceliuice/Qogir-kde
cd Qogir-kde
chmod +x ./install.sh
./install.sh
cd ..
# Simp1e Cursors
git clone --recurse-submodules https://gitlab.com/zoli111/simp1e.git
cd simp1e
sudo pacman -S -q --noconfirm \
librsvg \
python-pillow \
xorg-xcursorgen
./build.sh
mv ./built_themes/* ~/.icons
cd ..
# Git Config
git config --global user.name Dominic Masters
git config --global user.email dominic@domsplace.com

11
testing.sh Normal file → Executable file
View File

@ -1,12 +1 @@
#!/bin/bash #!/bin/bash
# Disable the workspaces
qdbus org.kde.KWin /VirtualDesktopManager org.kde.KWin.VirtualDesktopManager.rows 1
qdbus org.kde.KWin /VirtualDesktopManager org.kde.KWin.VirtualDesktopManager.removeDesktop $(qdbus org.kde.KWin /VirtualDesktopManager org.kde.KWin.VirtualDesktopManager.current)
# TODO: Remove the tray icon
# Enable touch points
if [[ $(qdbus org.kde.KWin /Effects org.kde.kwin.Effects.isEffectLoaded touchpoints) -eq 'false' ]]; then
qdbus org.kde.KWin /Effects org.kde.kwin.Effects.isEffectLoaded touchpoints
qdbus org.kde.KWin /Effects org.kde.kwin.Effects.loadEffect touchpoints
fi