Add Mac OS Theme
parent
03d79b3656
commit
823e6e277c
@ -0,0 +1 @@
|
|||||||
|
App Made By And Added To Pi-Apps By RPI Coder
|
@ -0,0 +1,5 @@
|
|||||||
|
Realistic Light/Dark Mac OS Big Sur appearance theme. Uses XFCE desktop.
|
||||||
|
This is a bash script that will make your plain Raspberry Pi OS LXDE desktop look similar to MacOSBigSur. You can switch between light and dark themes using the themeconverter.
|
||||||
|
To run: Menu -> Accessories -> ThemeConverter
|
||||||
|
To run in a terminal: themeconverter
|
||||||
|
Uninstalling this app should restore all of your original theme configuration. If something breaks due to this theme, please report it.
|
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
@ -0,0 +1,21 @@
|
|||||||
|
#!/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
|
||||||
|
}
|
||||||
|
|
||||||
|
if [ ! -d ~/MacOSBigSurThemeConverter ];then
|
||||||
|
git clone https://github.com/techcoder20/MacOSBigSurThemeConverter.git || error "failed to download github repository!"
|
||||||
|
fi
|
||||||
|
|
||||||
|
#Making install script executable
|
||||||
|
sudo chmod +x ~/MacOSBigSurThemeConverter/install.sh || error "Failed to make install script executable"
|
||||||
|
|
||||||
|
#Running Install script
|
||||||
|
~/MacOSBigSurThemeConverter/install.sh || error "Failed to run install script"
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#!/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
|
||||||
|
}
|
||||||
|
|
||||||
|
#Running uninstall script
|
||||||
|
~/.local/share/MacOSBigSurThemeConverter/uninstall.sh
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
https://github.com/techcoder20/MacOSBigSurThemeConverter
|
Loading…
Reference in New Issue