Update dotenv
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@ wget*
|
||||
plasma-kickoff*
|
||||
Qogir*
|
||||
Qogir/*
|
||||
visual-studio*
|
34
TODO.txt
34
TODO.txt
@ -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
|
41
dotenv.sh
41
dotenv.sh
@ -58,7 +58,10 @@ sudo pacman -S -q --noconfirm \
|
||||
plasma-wayland-session \
|
||||
steam \
|
||||
zip \
|
||||
ttc-iosevka
|
||||
ttc-iosevka \
|
||||
bluedevil \
|
||||
noto-fonts \
|
||||
noto-fonts-cjk
|
||||
|
||||
|
||||
# Install programs using flatpak
|
||||
@ -73,6 +76,7 @@ flatpak install flathub \
|
||||
org.gnome.gitlab.YaLTeR.VideoTrimmer \
|
||||
com.orama_interactive.Pixelorama \
|
||||
com.uploadedlobster.peek \
|
||||
#com.valvesoftware.steam \
|
||||
--assumeyes
|
||||
|
||||
|
||||
@ -84,15 +88,6 @@ makepkg -si --noconfirm
|
||||
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
|
||||
echo -e "\n\n\nInstalling Private Internet Access\n\n\n"
|
||||
if ! command -v piactl &> /dev/null
|
||||
@ -130,3 +125,29 @@ nvim +"PlugInstall --sync" +qa
|
||||
cat ./configs/vimrc-config >> ~/.config/nvim/init.vim
|
||||
|
||||
# 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
11
testing.sh
Normal file → Executable file
@ -1,12 +1 @@
|
||||
#!/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
|
Reference in New Issue
Block a user