Compare commits

..

5 Commits

Author SHA1 Message Date
Kendall Whitman 8724f66761 update input text 2026-04-27 15:22:58 -05:00
Kendall Whitman 9150696ab7 update claude config 2026-04-27 10:13:49 -05:00
Kendall Whitman 1e2f5c61da update file structure 2026-04-23 11:17:45 -05:00
Kendall Whitman 1aeb550ec7 remove bash install files 2026-04-23 09:20:40 -05:00
Kendall Whitman 7f006e2a31 update install and config files 2026-04-22 21:19:24 -05:00
35 changed files with 46 additions and 1026 deletions
@@ -2,7 +2,7 @@ require("claude-code").setup({
-- Terminal window settings -- Terminal window settings
window = { window = {
split_ratio = 0.3, -- Percentage of screen for the terminal window (height for horizontal, width for vertical splits) split_ratio = 0.3, -- Percentage of screen for the terminal window (height for horizontal, width for vertical splits)
position = "botright", -- Position of the window: "botright", "topleft", "vertical", "float", etc. position = "float", -- Position of the window: "botright", "topleft", "vertical", "float", etc.
enter_insert = true, -- Whether to enter insert mode when opening Claude Code enter_insert = true, -- Whether to enter insert mode when opening Claude Code
hide_numbers = true, -- Hide line numbers in the terminal window hide_numbers = true, -- Hide line numbers in the terminal window
hide_signcolumn = true, -- Hide the sign column in the terminal window hide_signcolumn = true, -- Hide the sign column in the terminal window
@@ -48,7 +48,7 @@ require("claude-code").setup({
-- Keymaps -- Keymaps
keymaps = { keymaps = {
toggle = { toggle = {
normal = "<C-,>", -- Normal mode keymap for toggling Claude Code, false to disable normal = "<leader>cc", -- Normal mode keymap for toggling Claude Code, false to disable
terminal = "<C-,>", -- Terminal mode keymap for toggling Claude Code, false to disable terminal = "<C-,>", -- Terminal mode keymap for toggling Claude Code, false to disable
variants = { variants = {
continue = "<leader>cC", -- Normal mode keymap for Claude Code with continue flag continue = "<leader>cC", -- Normal mode keymap for Claude Code with continue flag
-61
View File
@@ -1,61 +0,0 @@
APPS=(
brave-bin
element-desktop
libreoffice-fresh
neovim-git
proton-mail-bin
proton-vpn-gtk-app
rtorrent
steam
stow
tmux
wl-clipboard
)
# Sym Link Home Folders To External Storage
while true; do
read -p "Do you want to link home folders with external storage? y/N: " storageChoice
storageChoice=$(echo "$storageChoice" | tr '[:upper:]' '[:lower:]')
sudo rm -rf ~/Public ~/Templates
if [ "$storageChoice" = "y" ]; then
read -p "Specify the path to the external storage device (full path must be used): " storagePath
sudo rm -rf ~/Documents ~/Pictures ~/Downloads ~/Videos ~/Music
ln -s "$storagePath/Pictures/" ~/
ln -s "$storagePath/Repos/" ~/
ln -s "$storagePath/Documents/" ~/
ln -s "$storagePath/Downloads/" ~/
ln -s "$storagePath/Videos/" ~/
ln -s "$storagePath/Music/" ~/
break
elif [ "$storageChoice" = "n" ]; then
echo "Skipping sym linking..."
cp -r ./Repos ~
break
else
echo "Invalid input. Please enter y or n."
fi
done
# Install Apt Apps
for i in "${APPS[@]}"
do
if [ -x "$(command -v $i)" ]; then
echo "$i already installed!"
else
sudo pacman -S $i
fi
done
sudo rm -rf ~/.config/fish/ ~/.config/alacritty
# Link Config Files
for folder in ${DOTFILES[@]}
do
echo $folder
stow $folder --adopt
done
-27
View File
@@ -1,27 +0,0 @@
while true; do
read -p "Do you want to link home folders with external storage? y/N: " storageChoice
storageChoice=$(echo "$storageChoice" | tr '[:upper:]' '[:lower:]')
sudo rm -rf ~/Public ~/Templates
if [ "$storageChoice" = "y" ]; then
read -p "Specify the path to the external storage device (full path must be used): " storagePath
sudo rm -rf ~/Documents ~/Pictures ~/Downloads ~/Videos ~/Music
ln -s "$storagePath/Pictures/" ~/
ln -s "$storagePath/Repos/" ~/
ln -s "$storagePath/Documents/" ~/
ln -s "$storagePath/Downloads/" ~/
ln -s "$storagePath/Videos/" ~/
ln -s "$storagePath/Music/" ~/
break
elif [ "$storageChoice" = "n" ]; then
echo "Skipping sym linking..."
cp -r ./Repos ~
break
else
echo "Invalid input. Please enter y or n."
fi
done
-7
View File
@@ -1,7 +0,0 @@
sudo apt remove gettext-base -y
sudo apt install gettext -y
source ~/.bashrc
git clone https://github.com/neovim/neovim
cd neovim
make CMAKE_BUILD_TYPE=RelWithDebInfo && cd build && cpack -G DEB && sudo dpkg -i nvim-linux-x86_64.deb
cd ~/.dotfiles/ && sudo rm -rf neovim
-173
View File
@@ -1,173 +0,0 @@
APPS=(
cmake
curl
flatpak
g++
btop
fastfetch
ninja-build
plasma-discover-backend-flatpak
ripgrep
rtorrent
scdaemon
steam
stow
tmux
tmuxp
virt-manager
wl-clipboard
)
FLATPAK_APPS=(
com.protonvpn.www
im.riot.Riot
org.darktable.Darktable
org.freecad.FreeCAD
org.gimp.GIMP
org.inkscape.Inkscape
org.libreoffice.LibreOffice
com.brave.Browser
)
DOTFILES=(
bash
konsole
menus
nvim
rtorrent
tmux
tmuxp
)
# Check if Snap is installed
if [ -x "$(command -v snap)" ]; then
echo "Remove Snap packages first before running this script!"
exit 1
fi
# Sym Link Home Folders To External Storage
while true; do
read -p "Do you want to link home folders with external storage? y/N: " storageChoice
storageChoice=$(echo "$storageChoice" | tr '[:upper:]' '[:lower:]')
sudo rm -rf ~/Public ~/Templates
if [ "$storageChoice" = "y" ]; then
read -p "Specify the path to the external storage device (full path must be used): " storagePath
sudo rm -rf ~/Documents ~/Pictures ~/Downloads ~/Videos ~/Music
ln -s "$storagePath/Pictures/" ~/
ln -s "$storagePath/Repos/" ~/
ln -s "$storagePath/Documents/" ~/
ln -s "$storagePath/Downloads/" ~/
ln -s "$storagePath/Videos/" ~/
ln -s "$storagePath/Music/" ~/
break
elif [ "$storageChoice" = "n" ]; then
echo "Skipping sym linking..."
cp -r ./Repos ~
break
else
echo "Invalid input. Please enter y or n."
fi
done
# Install Apt Apps
for i in "${APPS[@]}"
do
if [ -x "$(command -v $i)" ]; then
echo "$i already installed!"
else
sudo apt install $i -y
fi
done
# Add Flathub Repo
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# Install Flatpak Apps
for i in "${FLATPAK_APPS[@]}"
do
if [ -x "$(command -v $i)" ]; then
echo "$i already installed!"
else
flatpak install $i -y
fi
done
# NVM Setup
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
source ~/.bashrc
. ~/.nvm/nvm.sh
nvm install --lts
# Add Yubikey Support to bashrc
if grep -q '# Yubikey SSH Support' ~/.bashrc; then
echo "Yubikey support already added."
else
echo "
# Yubikey SSH Support
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
" >> ~/.bashrc
fi
# Remove default menu config files
sudo rm -rf ~/.config/menus ~/.config/plasma-org.kde.plasma.desktop-appletsrc
# Link Config Files
for folder in ${DOTFILES[@]}
do
echo $folder
stow $folder --adopt
done
git restore .
# Font Install
sudo cp ./fonts/FiraCodeNerdFontMono-Medium.ttf /usr/local/share/fonts
# Check if this is my profile
while true; do
read -p "Is this profile for Kendall? y/N: " profileChoice
profileChoice=$(echo "$profileChoice" | tr '[:upper:]' '[:lower:]')
if [ "$profileChoice" = "y" ]; then
# Add User To Group For Virtual Manager
sudo adduser kendall libvirt-qemu
break
elif [ "$profileChoice" = "n" ]; then
break
else
echo "Invalid input. Please enter y or n."
fi
done
# Install latest Neovim
if ! [ -x "$(command -v nvim)" ]; then
sudo apt remove gettext-base -y
sudo apt install gettext -y
source ~/.bashrc
git clone https://github.com/neovim/neovim
cd neovim
make CMAKE_BUILD_TYPE=RelWithDebInfo && cd build && cpack -G DEB && sudo dpkg -i nvim-linux-x86_64.deb
cd ~/.dotfiles/ && sudo rm -rf neovim
fi
-35
View File
@@ -1,35 +0,0 @@
[Desktop Entry]
DefaultProfile=Profile 1.profile
[General]
ConfigVersion=1
[KFileDialog Settings]
iconViewIconSize=64
[MainWindow]
1920x1080 screen: Height=554
1920x1080 screen: Width=911
1920x1080 screen: Window-Maximized=true
2 screens: Height=1041
2 screens: Width=1732
2 screens: Window-Maximized=true
2 screens: XPosition=0
2 screens: YPosition=30
2560x1440 screen: Height=690
2560x1440 screen: Width=1280
2560x1440 screen: Window-Maximized=true
2560x1440 screen: XPosition=0
2560x1440 screen: YPosition=30
3 screens: Height=900
3 screens: Width=1706
3 screens: Window-Maximized=true
DP-1=DP-1
DP-2=DP-2
DP-2 HDMI-0=DP-2
MenuBar=Disabled
State[$d]
ToolBarsMovable=Disabled
[UiSettings]
ColorScheme=
@@ -1,25 +0,0 @@
[Appearance]
AntiAliasFonts=true
BoldIntense=true
ColorScheme=Breeze
Font=FiraCode Nerd Font Mono,12,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
UseFontBrailleChararacters=true
UseFontLineChararacters=false
[General]
Command=/bin/tmux
DimWhenInactive=false
Name=Profile 1
Parent=FALLBACK/
StartInCurrentSessionDir=false
TerminalColumns=160
TerminalRows=50
[Scrolling]
HistoryMode=2
ScrollBarPosition=2
ScrollFullPage=false
[Terminal Features]
BellMode=3
BlinkingCursorEnabled=true
@@ -1,290 +0,0 @@
<!DOCTYPE Menu PUBLIC '-//freedesktop//DTD Menu 1.0//EN' 'http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd'>
<Menu>
<Menu>
<Name>Development</Name>
<Exclude>
<Filename>org.kde.kate.desktop</Filename>
<Filename>Godot.desktop</Filename>
</Exclude>
<Include/>
<Layout>
<Merge type="menus"/>
<Menuname>Translation</Menuname>
<Menuname>Web Development</Menuname>
</Layout>
<Deleted/>
</Menu>
<Menu>
<Name>Education</Name>
<Menu>
<Name>Science</Name>
<Deleted/>
</Menu>
<Menu>
<Name>Mathematics</Name>
<Layout/>
<Exclude>
<Filename>org.libreoffice.LibreOffice.math.desktop</Filename>
</Exclude>
</Menu>
<Layout>
<Merge type="menus"/>
<Menuname>Languages</Menuname>
<Menuname>Mathematics</Menuname>
<Menuname>Miscellaneous</Menuname>
<Menuname>Tools</Menuname>
</Layout>
</Menu>
<Menu>
<Name>Graphics</Name>
<Exclude>
<Filename>org.libreoffice.LibreOffice.draw.desktop</Filename>
<Filename>display-im6.q16.desktop</Filename>
<Filename>org.kde.okular.desktop</Filename>
<Filename>org.kde.gwenview.desktop</Filename>
</Exclude>
<Include>
<Filename>com.obsproject.Studio.desktop</Filename>
<Filename>com.ultimaker.cura.desktop</Filename>
<Filename>Godot.desktop</Filename>
<Filename>Unity Hub.desktop</Filename>
</Include>
<Layout>
<Merge type="files"/>
<Filename>org.blender.Blender.desktop</Filename>
<Filename>org.darktable.Darktable.desktop</Filename>
<Filename>org.freecad.FreeCAD.desktop</Filename>
<Filename>org.gimp.GIMP.desktop</Filename>
<Filename>org.inkscape.Inkscape.desktop</Filename>
<Filename>com.obsproject.Studio.desktop</Filename>
<Filename>com.ultimaker.cura.desktop</Filename>
<Filename>Unity Hub.desktop</Filename>
<Separator/>
<Merge type="menus"/>
<Menuname>More</Menuname>
</Layout>
</Menu>
<Menu>
<Name>Internet</Name>
<Exclude>
<Filename>steam.desktop</Filename>
<Filename>remote-viewer.desktop</Filename>
<Filename>io.github.input_leap.input-leap.desktop</Filename>
</Exclude>
<Include>
<Filename>ch.protonmail.protonmail-bridge.desktop</Filename>
</Include>
<Layout>
<Merge type="files"/>
<Filename>im.riot.Riot.desktop</Filename>
<Filename>io.gitlab.librewolf-community.desktop</Filename>
<Filename>com.protonvpn.www.desktop</Filename>
<Filename>com.slack.Slack.desktop</Filename>
<Merge type="menus"/>
<Menuname>Terminal</Menuname>
<Separator/>
<Menuname>More</Menuname>
</Layout>
</Menu>
<Menu>
<Name>Multimedia</Name>
<Exclude>
<Filename>com.obsproject.Studio.desktop</Filename>
</Exclude>
<Layout>
<Merge type="menus"/>
<Menuname>More</Menuname>
</Layout>
<Deleted/>
</Menu>
<Menu>
<Name>Settingsmenu</Name>
<Include/>
<Exclude>
<Filename>remote-viewer.desktop</Filename>
<Filename>org.fcitx.fcitx5-migrator.desktop</Filename>
<Filename>im-config.desktop</Filename>
<Filename>systemsettings.desktop</Filename>
<Filename>nvidia-settings.desktop</Filename>
</Exclude>
<Layout/>
</Menu>
<Menu>
<Name>System</Name>
<Include>
<Filename>im-config.desktop</Filename>
<Filename>systemsettings.desktop</Filename>
<Filename>org.fcitx.fcitx5-migrator.desktop</Filename>
<Filename>org.fcitx.Fcitx5.desktop</Filename>
</Include>
<Exclude>
<Filename>display-im6.q16.desktop</Filename>
<Filename>com.ultimaker.cura.desktop</Filename>
<Filename>htop.desktop</Filename>
<Filename>org.kde.dolphin.desktop</Filename>
<Filename>org.kde.discover.desktop</Filename>
<Filename>org.kde.partitionmanager.desktop</Filename>
<Filename>virt-manager.desktop</Filename>
<Filename>org.kde.konsole.desktop</Filename>
</Exclude>
<Menu>
<Name>ScreenSavers</Name>
<Layout/>
<Include/>
<Exclude>
<Filename>org.fcitx.Fcitx5.desktop</Filename>
</Exclude>
</Menu>
<Layout>
<Merge type="files"/>
<Filename>btop.desktop</Filename>
<Filename>org.kde.kinfocenter.desktop</Filename>
<Filename>im-config.desktop</Filename>
<Filename>org.kde.ksystemlog.desktop</Filename>
<Filename>org.kde.kwalletmanager.desktop</Filename>
<Filename>org.kde.kmenuedit.desktop</Filename>
<Filename>nvidia-settings.desktop</Filename>
<Merge type="menus"/>
<Menuname>ScreenSavers</Menuname>
<Filename>org.kde.plasma-systemmonitor.desktop</Filename>
<Filename>systemsettings.desktop</Filename>
<Filename>debian-uxterm.desktop</Filename>
<Filename>debian-xterm.desktop</Filename>
<Separator/>
<Menuname>More</Menuname>
</Layout>
</Menu>
<Menu>
<Name>Utilities</Name>
<Include>
<Filename>display-im6.q16.desktop</Filename>
<Filename>remote-viewer.desktop</Filename>
<Filename>htop.desktop</Filename>
<Filename>org.kde.okular.desktop</Filename>
<Filename>org.kde.gwenview.desktop</Filename>
<Filename>io.github.input_leap.input-leap.desktop</Filename>
<Filename>org.kde.dolphin.desktop</Filename>
<Filename>org.kde.discover.desktop</Filename>
<Filename>org.kde.partitionmanager.desktop</Filename>
<Filename>virt-manager.desktop</Filename>
<Filename>org.kde.konsole.desktop</Filename>
</Include>
<Exclude>
<Filename>com.ultimaker.cura.desktop</Filename>
<Filename>com.logseq.Logseq.desktop</Filename>
<Filename>org.fcitx.Fcitx5.desktop</Filename>
<Filename>org.fcitx.fcitx5-migrator.desktop</Filename>
</Exclude>
<Menu>
<Name>Terminal</Name>
<NotDeleted/>
</Menu>
<Layout>
<Merge type="files"/>
<Filename>org.kde.ark.desktop</Filename>
<Filename>org.kde.discover.desktop</Filename>
<Filename>org.kde.dolphin.desktop</Filename>
<Filename>org.kde.plasma.emojier.desktop</Filename>
<Filename>org.kde.gwenview.desktop</Filename>
<Filename>io.github.input_leap.input-leap.desktop</Filename>
<Filename>org.kde.kate.desktop</Filename>
<Filename>org.kde.kcalc.desktop</Filename>
<Filename>org.kde.kcharselect.desktop</Filename>
<Filename>org.kde.konsole.desktop</Filename>
<Filename>nvim.desktop</Filename>
<Filename>com.nextcloud.desktopclient.nextcloud.desktop</Filename>
<Filename>org.kde.okular.desktop</Filename>
<Filename>org.kde.spectacle.desktop</Filename>
<Merge type="menus"/>
<Menuname>Terminal</Menuname>
<Filename>info.desktop</Filename>
<Filename>virt-manager.desktop</Filename>
<Menuname>XUtilities</Menuname>
<Separator/>
<Menuname>More</Menuname>
</Layout>
</Menu>
<Include/>
<Exclude>
<Filename>display-im6.q16.desktop</Filename>
<Filename>org.kde.khelpcenter.desktop</Filename>
<Filename>Godot.desktop</Filename>
</Exclude>
<Menu>
<Name>.hidden</Name>
<Include>
<Filename>org.kde.kate.desktop</Filename>
<Filename>org.libreoffice.LibreOffice.draw.desktop</Filename>
<Filename>steam.desktop</Filename>
<Filename>org.kde.khelpcenter.desktop</Filename>
<Filename>org.libreoffice.LibreOffice.math.desktop</Filename>
<Filename>nvidia-settings.desktop</Filename>
<Filename>org.kde.okular.desktop</Filename>
<Filename>com.brave.Browser.flextop.brave-cbhjompmobhclodnimfcmlgnahbbdhlb-Default.desktop</Filename>
<Filename>com.logseq.Logseq.desktop</Filename>
<Filename>org.fcitx.Fcitx5.desktop</Filename>
</Include>
</Menu>
<Menu>
<Name>Games</Name>
<Layout>
<Merge type="menus"/>
<Menuname>Arcade</Menuname>
<Menuname>Board</Menuname>
<Menuname>Card</Menuname>
<Menuname>Kidsgames</Menuname>
<Menuname>Logic</Menuname>
<Merge type="files"/>
<Filename>steam.desktop</Filename>
<Menuname>TacticStrategy</Menuname>
</Layout>
</Menu>
<Menu>
<Name>Office</Name>
<Exclude>
<Filename>ch.protonmail.protonmail-bridge.desktop</Filename>
<Filename>org.kde.okular.desktop</Filename>
</Exclude>
<Layout>
<Merge type="files"/>
<Filename>org.libreoffice.LibreOffice.desktop</Filename>
<Filename>org.libreoffice.LibreOffice.base.desktop</Filename>
<Filename>org.libreoffice.LibreOffice.calc.desktop</Filename>
<Filename>org.libreoffice.LibreOffice.draw.desktop</Filename>
<Filename>org.libreoffice.LibreOffice.impress.desktop</Filename>
<Filename>org.libreoffice.LibreOffice.math.desktop</Filename>
<Filename>org.libreoffice.LibreOffice.writer.desktop</Filename>
<Separator/>
<Merge type="menus"/>
<Menuname>More</Menuname>
</Layout>
</Menu>
<Menu>
<Name>Applications</Name>
<Layout/>
<Exclude>
<Filename>com.brave.Browser.flextop.brave-cbhjompmobhclodnimfcmlgnahbbdhlb-Default.desktop</Filename>
</Exclude>
</Menu>
<Move>
<Old>System/Terminal</Old>
<New>Utilities/Terminal</New>
</Move>
<Layout>
<Merge type="menus"/>
<Menuname>Education</Menuname>
<Menuname>Games</Menuname>
<Menuname>Graphics</Menuname>
<Menuname>Internet</Menuname>
<Menuname>Office</Menuname>
<Menuname>Science</Menuname>
<Menuname>Settingsmenu</Menuname>
<Menuname>System</Menuname>
<Menuname>Utilities</Menuname>
<Menuname>Applications</Menuname>
</Layout>
<Menu>
<Name>Help</Name>
<Deleted/>
</Menu>
</Menu>
@@ -1,263 +0,0 @@
[ActionPlugins][0]
RightButton;NoModifier=org.kde.contextmenu
[ActionPlugins][1]
RightButton;NoModifier=org.kde.contextmenu
[Containments][2]
activityId=
formfactor=2
immutability=1
lastScreen=0
location=4
plugin=org.kde.panel
wallpaperplugin=org.kde.image
[Containments][2][Applets][20]
immutability=1
plugin=org.kde.plasma.digitalclock
[Containments][2][Applets][20][Configuration]
PreloadWeight=100
popupHeight=450
popupWidth=810
[Containments][2][Applets][20][Configuration][Appearance]
enabledCalendarPlugins=holidaysevents
fontWeight=400
[Containments][2][Applets][20][Configuration][ConfigDialog]
DialogHeight=540
DialogWidth=720
[Containments][2][Applets][3]
immutability=1
plugin=org.kde.plasma.kickoff
[Containments][2][Applets][3][Configuration]
PreloadWeight=100
popupHeight=510
popupWidth=647
[Containments][2][Applets][3][Configuration][ConfigDialog]
DialogHeight=540
DialogWidth=720
[Containments][2][Applets][3][Configuration][Configuration/General]
icon=start-here-kubuntu
showAppsByName=true
[Containments][2][Applets][3][Configuration][General]
alphaSort=true
favoritesPortedToKAstats=true
highlightNewlyInstalledApps=false
icon=start-here-kubuntu
switchCategoryOnHover=true
systemFavorites=suspend\\,hibernate\\,reboot\\,shutdown
[Containments][2][Applets][3][Configuration][Shortcuts]
global=Alt+F1
[Containments][2][Applets][4]
immutability=1
plugin=org.kde.plasma.pager
[Containments][2][Applets][5]
immutability=1
plugin=org.kde.plasma.icontasks
[Containments][2][Applets][5][Configuration][General]
launchers=preferred://filemanager,file:///var/lib/flatpak/exports/share/applications/com.brave.Browser.desktop,applications:org.kde.konsole.desktop,file:///var/lib/flatpak/exports/share/applications/im.riot.Riot.desktop,file:///var/lib/flatpak/exports/share/applications/me.proton.Mail.desktop,file:///usr/share/applications/steam.desktop
[Containments][2][Applets][6]
immutability=1
plugin=org.kde.plasma.marginsseparator
[Containments][2][Applets][7]
activityId=
formfactor=2
immutability=1
lastScreen=0
location=4
plugin=org.kde.plasma.systemtray
popupHeight=432
popupWidth=432
wallpaperplugin=org.kde.image
[Containments][2][Applets][7][Applets][10]
immutability=1
plugin=org.kde.plasma.clipboard
[Containments][2][Applets][7][Applets][10][Configuration]
PreloadWeight=42
[Containments][2][Applets][7][Applets][11]
immutability=1
plugin=org.kde.plasma.keyboardindicator
[Containments][2][Applets][7][Applets][11][Configuration]
PreloadWeight=42
[Containments][2][Applets][7][Applets][12]
immutability=1
plugin=org.kde.plasma.printmanager
[Containments][2][Applets][7][Applets][12][Configuration]
PreloadWeight=42
[Containments][2][Applets][7][Applets][13]
immutability=1
plugin=org.kde.plasma.notifications
[Containments][2][Applets][7][Applets][13][Configuration]
PreloadWeight=67
[Containments][2][Applets][7][Applets][14]
immutability=1
plugin=org.kde.plasma.keyboardlayout
[Containments][2][Applets][7][Applets][14][Configuration]
PreloadWeight=42
[Containments][2][Applets][7][Applets][15]
immutability=1
plugin=org.kde.plasma.manage-inputmethod
[Containments][2][Applets][7][Applets][15][Configuration]
PreloadWeight=42
[Containments][2][Applets][7][Applets][16]
immutability=1
plugin=org.kde.plasma.cameraindicator
[Containments][2][Applets][7][Applets][16][Configuration]
PreloadWeight=42
[Containments][2][Applets][7][Applets][17]
immutability=1
plugin=org.kde.plasma.vault
[Containments][2][Applets][7][Applets][18]
immutability=1
plugin=org.kde.kscreen
[Containments][2][Applets][7][Applets][18][Configuration]
PreloadWeight=42
[Containments][2][Applets][7][Applets][19]
immutability=1
plugin=org.kde.plasma.volume
[Containments][2][Applets][7][Applets][19][Configuration]
PreloadWeight=100
[Containments][2][Applets][7][Applets][19][Configuration][General]
migrated=true
[Containments][2][Applets][7][Applets][22][Configuration]
PreloadWeight=34
[Containments][2][Applets][7][Applets][23][Configuration]
PreloadWeight=34
[Containments][2][Applets][7][Applets][24]
immutability=1
plugin=org.kde.plasma.networkmanagement
[Containments][2][Applets][7][Applets][24][Configuration]
PreloadWeight=100
[Containments][2][Applets][7][Applets][24][Configuration][General]
currentDetailsTab=details
[Containments][2][Applets][7][Applets][25]
immutability=1
plugin=org.kde.plasma.bluetooth
[Containments][2][Applets][7][Applets][25][Configuration]
PreloadWeight=100
[Containments][2][Applets][7][Applets][26]
immutability=1
plugin=org.kde.plasma.notifications
[Containments][2][Applets][7][Applets][26][Configuration]
PreloadWeight=100
[Containments][2][Applets][7][Applets][27]
immutability=1
plugin=org.kde.plasma.mediacontroller
[Containments][2][Applets][7][Applets][27][Configuration]
PreloadWeight=0
[Containments][2][Applets][7][Applets][30][Configuration]
PreloadWeight=0
[Containments][2][Applets][7][Applets][31][Configuration]
PreloadWeight=42
[Containments][2][Applets][7][Applets][33]
immutability=1
plugin=org.kde.plasma.battery
[Containments][2][Applets][7][Applets][33][Configuration]
PreloadWeight=18
[Containments][2][Applets][7][Applets][9]
immutability=1
plugin=org.kde.plasma.devicenotifier
[Containments][2][Applets][7][Applets][9][Configuration]
PreloadWeight=100
[Containments][2][Applets][7][Applets][9][Configuration][General]
migrated=true
[Containments][2][Applets][7][ConfigDialog]
DialogHeight=540
DialogWidth=720
[Containments][2][Applets][7][Configuration]
PreloadWeight=100
[Containments][2][Applets][7][General]
extraItems=org.kde.plasma.volume,org.kde.plasma.mediacontroller,org.kde.plasma.cameraindicator,org.kde.plasma.bluetooth,org.kde.plasma.networkmanagement,org.kde.plasma.battery,org.kde.plasma.notifications
hiddenItems=Fcitx,Xwayland Video Bridge_pipewireToXProxy,org.kde.plasma.notifications
knownItems=org.kde.plasma.volume,org.kde.plasma.vault,org.kde.plasma.printmanager,org.kde.kscreen,org.kde.plasma.devicenotifier,org.kde.plasma.clipboard,org.kde.plasma.brightness,org.kde.plasma.keyboardindicator,org.kde.plasma.battery,org.kde.plasma.mediacontroller,org.kde.plasma.manage-inputmethod,org.kde.plasma.cameraindicator,org.kde.plasma.keyboardlayout,org.kde.plasma.notifications,org.kde.plasma.bluetooth,org.kde.plasma.networkmanagement,org.kde.kupapplet,org.kde.plasma.weather
shownItems=org.kde.plasma.volume,org.kde.plasma.networkmanagement,org.kde.plasma.battery
[Containments][2][General]
AppletOrder=3;4;5;6;7;20
[Containments][33]
ItemGeometries-2048x1280=
ItemGeometriesHorizontal=
activityId=8529a03a-ac64-45ee-b16a-2ffeb9bf9945
formfactor=0
immutability=1
lastScreen=0
location=0
plugin=org.kde.plasma.folder
wallpaperplugin=org.kde.image
[Containments][33][ConfigDialog]
DialogHeight=540
DialogWidth=720
[Containments][33][General]
positions={"2048x1280":[]}
[Containments][33][Wallpaper][org.kde.image][General]
Image=/home/kendall/Pictures/Wallpapers/nature_road.jpg
SlidePaths=/usr/share/wallpapers/
[Containments][9][Applets][23][Configuration]
PreloadWeight=34
[Containments][9][Applets][24][Configuration]
PreloadWeight=34
[ScreenMapping]
itemsOnDisabledScreens=
screenMapping=
+6 -11
View File
@@ -15,26 +15,21 @@ DIRECTORIES_TO_REMOVE = [
APPS = [ APPS = [
'element-desktop', 'element-desktop',
'fisher', 'fisher',
'flatpak',
'freecad', 'freecad',
'gimp',
'inkscape',
'libreoffice-fresh', 'libreoffice-fresh',
'librewolf-bin', 'librewolf-bin',
'localsend',
'neovim', 'neovim',
'okular',
'proton-mail-bin', 'proton-mail-bin',
'proton-vpn-gtk-app', 'proton-vpn-gtk-app',
'prusa-slicer',
'rtorrent', 'rtorrent',
'steam', 'steam',
'stow', 'stow',
'tmux', 'tmux',
'torbrowser-launcher',
'wl-clipboard', 'wl-clipboard',
'gimp',
'inkscape',
]
DOTFILES = [
'alacritty',
'fish',
'nvim',
'rtorrent',
'tmux',
] ]
+37 -29
View File
@@ -4,51 +4,59 @@ from pathlib import Path
def sym_link_dir(): def sym_link_dir():
confirm_link = input("Do you want to link home directories to external storage? (Y/n): ") confirm_link = input("Link home directories to external storage? (Y/n): ")
if confirm_link.lower() in ("y", "yes", ""): if confirm_link.lower() not in ("y", "yes", ""):
target_dir = input("Specify the full path to the external storage: ") return
if Path(target_dir).is_dir(): target_dir = Path(input("Specify the full path to the external storage: "))
for dir in config.DIRECTORIES:
DIR_ITEM = Path(f"{Path.home()}/{dir}")
if not DIR_ITEM.is_symlink(): if not target_dir.is_dir():
if DIR_ITEM.is_dir(): return
DIR_ITEM.rmdir()
DIR_ITEM.symlink_to(f"{target_dir}/{dir}")
for dir in config.DIRECTORIES_TO_REMOVE: for subdir in config.DIRECTORIES:
DIR_ITEM = Path(f"{Path.home()}/{dir}") dir_item = Path.home() / subdir
if DIR_ITEM.is_dir() and not DIR_ITEM.is_symlink(): if not dir_item.is_symlink():
DIR_ITEM.rmdir() if dir_item.is_dir():
dir_item.rmdir()
dir_item.symlink_to(target_dir / subdir)
for subdir in config.DIRECTORIES_TO_REMOVE:
dir_item = Path.home() / subdir
if dir_item.is_dir() and not dir_item.is_symlink():
dir_item.rmdir()
def install_apps(): def install_apps():
for app in config.APPS: subprocess.run(
subprocess.run([ ['sudo', 'pacman', '-S', '--noconfirm', *config.APPS],
'sudo', 'pacman', '-S', f"{app}", '--noconfirm' check=True
], check=True) )
subprocess.run([ subprocess.run(
"fish", "-c", "fisher install jorgebucaran/nvm.fish" ["fish", "-c", "fisher install jorgebucaran/nvm.fish"],
], check=True) check=True
)
subprocess.run([ subprocess.run(
"fish", "-c", "nvm install lts" ["fish", "-c", "nvm install lts"],
], check=True) check=True
)
def stow_dot_files(): def stow_dot_files():
dotfiles_root = Path.home() / '.dotfiles' dotfiles_root = Path.home() / '.dotfiles'
for dotfile in config.DOTFILES: config_dir = Path.home() / '.config'
subprocess.run([
'stow', '-d', str(dotfiles_root), dotfile, '--adopt'
], check=True)
subprocess.run( subprocess.run(
['git', 'checkout', '--', *config.DOTFILES], ['stow', '-d', str(dotfiles_root), '-t', str(config_dir), '--adopt', 'config'],
check=True
)
subprocess.run(
['git', 'checkout', '--', 'config'],
cwd=dotfiles_root, cwd=dotfiles_root,
check=True, check=True,
) )
-17
View File
@@ -1,17 +0,0 @@
session_name: Amp
windows:
- window_name: Amp
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/WEB.AMP.git/
- cmd: clear
- window_name: Server
layout: even-horizontal
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/WEB.AMP.git/
- cmd: clear
- shell_command:
- cmd: cd ~/Repos/NBC/WEB.AMP.git/
- cmd: clear
-17
View File
@@ -1,17 +0,0 @@
session_name: Amped
windows:
- window_name: Amped
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/amped-up.git/
- cmd: clear
- window_name: Server
layout: even-horizontal
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/amped-up.git/
- cmd: clear
- shell_command:
- cmd: cd ~/Repos/NBC/amped-up.git/
- cmd: clear
-17
View File
@@ -1,17 +0,0 @@
session_name: HFS
windows:
- window_name: HFS
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/header-footer-service.git/
- cmd: clear
- window_name: Server
layout: even-horizontal
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/header-footer-service.git/
- cmd: clear
- shell_command:
- cmd: cd ~/Repos/NBC/header-footer-service.git/
- cmd: clear
-17
View File
@@ -1,17 +0,0 @@
session_name: Omega
windows:
- window_name: Omega
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/omega-player.git/
- cmd: clear
- window_name: Server
layout: even-horizontal
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/omega-player.git/
- cmd: clear
- shell_command:
- cmd: cd ~/Repos/NBC/omega-player.git/
- cmd: clear
-17
View File
@@ -1,17 +0,0 @@
session_name: Phoenix
windows:
- window_name: Phoenix
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/WEB.Phoenix.git/
- cmd: clear
- window_name: Server
layout: even-horizontal
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/WEB.Phoenix.git/
- cmd: clear
- shell_command:
- cmd: cd ~/Repos/NBC/WEB.Phoenix.git/
- cmd: clear
-17
View File
@@ -1,17 +0,0 @@
session_name: Ramen
windows:
- window_name: Ramen
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/nextjs-ramen.git/
- cmd: clear
- window_name: Server
layout: even-horizontal
panes:
- shell_command:
- cmd: cd ~/Repos/NBC/nextjs-ramen.git/
- cmd: clear
- shell_command:
- cmd: cd ~/Repos/NBC/nextjs-ramen.git/
- cmd: clear