Compare commits

...

3 Commits

Author SHA1 Message Date
Yarosλaβ .
ed9aa7247a
Merge f0662c47ba into 86e6875d9e 2024-11-18 21:32:26 -06:00
adi1090x
86e6875d9e Deploying to master from @ adi1090x/rofi@f3835e7f72 🚀 2024-11-05 15:04:24 +00:00
Yarosλaβ
f0662c47ba
Update setup.sh
You have been installing themes and other things in `$XDG_CONFIG_HOME` directory like `ROFI_DIR="$HOME/.config/rofi"` (in `.config`), but fonts installed in `.local/shares/fonts`. I think that should be improved because this path is obsolete now for many applications, even `fc-cache` prefers `$XDG_DATA_HOME` (@see `/etc/fonts/fonts.conf` for more information).

Also, I added `-r, --really-force erase all existing caches, then rescan` argument, to verify the cache to be cleaned.
2023-02-02 09:29:55 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -109,7 +109,7 @@ $ ./setup.sh
</p> </p>
<p align="center"> <p align="center">
<!-- sponsors --><a href="https://github.com/davidtoska"><img src="https:&#x2F;&#x2F;avatars.githubusercontent.com&#x2F;u&#x2F;15263867?u&#x3D;7f45e973d008c1c9fc573554a95efac83751e726&amp;v&#x3D;4" width="60px" alt="David Toska" /></a><a href="https://github.com/snubbi1954-elementary"><img src="https:&#x2F;&#x2F;avatars.githubusercontent.com&#x2F;u&#x2F;162145059?u&#x3D;16ee4fee3e95ea7bc1599abdb2ff0ec4a2385ea2&amp;v&#x3D;4" width="60px" alt="Carl Andersen" /></a><a href="https://github.com/12c76dc"><img src="https:&#x2F;&#x2F;avatars.githubusercontent.com&#x2F;u&#x2F;88608064?u&#x3D;856f093e16e6d33996d2548d871884994b3ee627&amp;v&#x3D;4" width="60px" alt="" /></a><!-- sponsors --> <!-- sponsors --><a href="https://github.com/davidtoska"><img src="https:&#x2F;&#x2F;avatars.githubusercontent.com&#x2F;u&#x2F;15263867?u&#x3D;7f45e973d008c1c9fc573554a95efac83751e726&amp;v&#x3D;4" width="60px" alt="David Toska" /></a><a href="https://github.com/snubbi1954-elementary"><img src="https:&#x2F;&#x2F;avatars.githubusercontent.com&#x2F;u&#x2F;162145059?u&#x3D;16ee4fee3e95ea7bc1599abdb2ff0ec4a2385ea2&amp;v&#x3D;4" width="60px" alt="Carl Andersen" /></a><!-- sponsors -->
</p> </p>
--- ---

View File

@ -12,7 +12,7 @@ BBlue='\033[1;34m' BPurple='\033[1;35m' BCyan='\033[1;36m' BWhite='\033[1;37m'
## Directories ---------------------------- ## Directories ----------------------------
DIR=`pwd` DIR=`pwd`
FONT_DIR="$HOME/.local/share/fonts" FONT_DIR="$XDG_DATA_HOME/fonts" # or $XDG_CONFIG_HOME
ROFI_DIR="$HOME/.config/rofi" ROFI_DIR="$HOME/.config/rofi"
# Install Fonts # Install Fonts
@ -25,7 +25,7 @@ install_fonts() {
cp -rf $DIR/fonts/* "$FONT_DIR" cp -rf $DIR/fonts/* "$FONT_DIR"
fi fi
echo -e ${BYellow}"[*] Updating font cache...\n" ${Color_Off} echo -e ${BYellow}"[*] Updating font cache...\n" ${Color_Off}
fc-cache fc-cache -r
} }
# Install Themes # Install Themes