blob: b708bf85e7cd234423e43383d8ad03e5a95f766c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
if [ "$EUID" = 0 ]
then echo "Please do not run the script as root" && echo -en "\007" && spd-say "Please do not run the script as root"
exit
fi
dconf load / < ./all.settings
~/.cinnamon/configs/menu@cinnamon.org/0.json < ./cinnamon-menu.json
~/.cinnamon/configs/calendar@cinnamon.org/12.json < ./calendar.json
sudo mv -r oreo_black_bordered_cursors /usr/share/icons
# Make the custom cursors show up on programs that they don't work on
sudo sed -i "s/Inherits=Mint-Y-Dark,Adwaita,gnome,hicolor/Inherits=oreo_black_bordered_cursors,Mint-Y-Dark,Adwaita,gnome,hicolor/" /usr/share/icons/Mint-Y-Dark-Blue/index.theme
# Transparent panel in Mint-Y-Dark-Blue theme
sudo sed -i "s/#panel {/#panel {\n background-color: rgba(0, 0, 0, 0.07);/" /usr/share/themes/Mint-Y-Dark-Blue/cinnamon/cinnamon.css
echo "Done"
|