privacy: remove hardcoded username and AWS signed URL
Replace all /home/themiro/ path references with $HOME equivalents across .zshrc, monitorhandler.sh (now derives path from script location), gtk bookmarks, spicetify config, ulauncher generated CSS, and nvim init.lua.old. Delete commented-out AWS signed URL with embedded credentials from setup/deprecated/hyprland.sh. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>main
parent
a56d27888c
commit
76b1a0160f
2
.zshrc
2
.zshrc
|
|
@ -238,7 +238,7 @@ calc() { printf "%s\n" "$@" | bc -l; }
|
|||
|
||||
eval "$(starship init zsh)"
|
||||
|
||||
export PATH=$PATH:/home/themiro/.spicetify
|
||||
export PATH=$PATH:$HOME/.spicetify
|
||||
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
file:///home/themiro/Nextcloud
|
||||
file://$HOME/Nextcloud
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
swww restore
|
||||
|
||||
/home/themiro/Dotfiles/desktopenvs/hyprland/hypr/ewwstart.sh
|
||||
"$(dirname "$(readlink -f "$0")")/ewwstart.sh"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ extensions =
|
|||
|
||||
[Setting]
|
||||
spotify_path = $HOME/.local/share/spotify-launcher/install/usr/share/spotify/
|
||||
prefs_path = /home/themiro/.config/spotify/prefs
|
||||
prefs_path = $HOME/.config/spotify/prefs
|
||||
replace_colors = 1
|
||||
overwrite_assets = 0
|
||||
check_spicetify_update = 1
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
@import url("/home/themiro/.cache/ulauncher_cache/themes/dark/generated.css");
|
||||
@import url("$HOME/.cache/ulauncher_cache/themes/dark/generated.css");
|
||||
|
||||
* {
|
||||
font-family: Agave Nerd Font Mono, Arial, sans-serif;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ vim.call('plug#begin')
|
|||
Plug('junegunn/goyo.vim')
|
||||
Plug('rktjmp/lush.nvim')
|
||||
Plug('tpope/vim-sensible')
|
||||
Plug('/home/themiro/Dotfiles/nvim/theme/cyberqueer.nvim')
|
||||
Plug(vim.fn.expand('$HOME/Dotfiles/nvim/theme/cyberqueer.nvim'))
|
||||
vim.call('plug#end')
|
||||
|
||||
-- Color schemes should be loaded after plug#end().
|
||||
|
|
|
|||
|
|
@ -37,8 +37,6 @@ mkdir ~/.icons
|
|||
wget https://github.com/guillaumeboehm/Nordzy-cursors/releases/download/v2.3.0/Nordzy-cursors-lefthand.tar.gz
|
||||
tar -zxvf Nordzy-cursors-lefthand.tar.gz -C $HOME/.icons/
|
||||
|
||||
#cd ~/install-tmp
|
||||
#wget https://ocs-dl.fra1.cdn.digitaloceanspaces.com/data/files/1482459209/papirus-icon-theme-violet-folders.tar.xz?response-content-disposition=attachment%3B%2520papirus-icon-theme-violet-folders.tar.xz&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=RWJAQUNCHT7V2NCLZ2AL%2F20250508%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250508T130703Z&X-Amz-SignedHeaders=host&X-Amz-Expires=3600&X-Amz-Signature=f5312ba5a0e8f5eda2da85b2528f4b4905bc5b28f99cd5becb23d51c4d8c3b34
|
||||
#tar x -f papirus-icon-theme-violet-folders.tar.xz
|
||||
#cp -r Papirus* ~/.icons
|
||||
#gsettings set org.gnome.desktop.interface icon-theme Papirus-Dark
|
||||
|
|
|
|||
Loading…
Reference in New Issue