add back windows 10 theme
parent
5ccd77dbaf
commit
370fb82972
@ -0,0 +1,2 @@
|
||||
Make Raspberry Pi OS look as close to Windows 10 as possible.
|
||||
Installs an icon theme, GTK theme, openbox theme, mouse cursor theme, window shadows, window fading, desktop background, and custom panel.
|
Binary file not shown.
After Width: | Height: | Size: 214 B |
Binary file not shown.
After Width: | Height: | Size: 461 B |
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Get dependencies
|
||||
"${DIRECTORY}/pkg-install" "xcompmgr tint2 gtk2-engines-murrine" "$(dirname "$0")" || exit 1
|
||||
|
||||
if [ ! -d ~/Windows-10 ];then
|
||||
git clone https://github.com/Botspot/Windows-10 || error "failed to download github repository!"
|
||||
fi
|
||||
|
||||
~/Windows-10/install || error "failed to install!"
|
@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
~/Windows-10/uninstall | error "failed to uninstall!"
|
||||
#gio trash ~/Windows-10
|
@ -0,0 +1 @@
|
||||
https://github.com/Botspot/Windows-10
|
Loading…
Reference in New Issue