diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2022-11-28 07:45:30 -0600 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2022-11-28 07:45:30 -0600 |
commit | 4a38bb5e2b157dce33dd6a5058dece371a9e7161 (patch) | |
tree | 95097dd80b2e48afcbeeac494f1e97e1d4a578af /.old/setup | |
parent | 521bc70d8a81334945a498c1ff09de45554c0fe9 (diff) | |
download | scripts-4a38bb5e2b157dce33dd6a5058dece371a9e7161.tar.xz scripts-4a38bb5e2b157dce33dd6a5058dece371a9e7161.zip |
asdf
Diffstat (limited to '.old/setup')
-rwxr-xr-x | .old/setup | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -33,9 +33,11 @@ Name=Default profile" > $pcmanfmroot/root.desktop } minticons() { - gitdir="/tmp/mint-y-icons" + gitdir="/tmp/mint-y-icons-master" iconsdir="$gitdir/usr/share/icons" - git clone https://github.com/linuxmint/mint-y-icons.git "$gitdir" + #git clone https://github.com/linuxmint/mint-y-icons.git "$gitdir" + wget https://github.com/linuxmint/mint-y-icons/archive/refs/heads/master.zip -O "$gitdir.zip" + bsdtar xvf "$gitdir.zip" #iconsets="$(interactiveopt "$(ls "$iconsdir")" "Choose icon sets (if using dark theme, COPY THE NON-DARK THEME TOO): ")" #iconsets="$iconset Mint-Y" #for iconset in $iconsets; do @@ -46,10 +48,11 @@ minticons() { } mintthemes() { - gitdir="/tmp/mint-themes" + gitdir="/tmp/mint-themes-master" themesdir="$gitdir/usr/share/themes" #iconsdir="$gitdir/usr/share/icons" - git clone https://github.com/linuxmint/mint-themes.git "$gitdir" + wget https://github.com/linuxmint/mint-themes/archive/refs/heads/master.zip -O "$gitdir.zip" + bsdtar xvf "$gitdir.zip" curdir="$(pwd)" cd $gitdir make @@ -71,6 +74,6 @@ iconsdestdir=/usr/share/icons themesdestdir=/usr/share/themes mkdir -p $iconsdestdir $themesdestdir -pcmanfmconf +#pcmanfmconf minticons mintthemes |