Add Libreoffice MS Theme app
parent
7ba0421de8
commit
464035b418
@ -0,0 +1 @@
|
|||||||
|
Botspot
|
@ -0,0 +1,4 @@
|
|||||||
|
Make Libreoffice to look like Microsoft office - icon theme and tabbed interface.
|
||||||
|
The icon theme was obtained from here: https://www.deviantart.com/charliecnr/art/Office-2013-theme-for-LibreOffice-512127527
|
||||||
|
And the tabbed interface is a hidden feature within Libreoffice.
|
||||||
|
Currently, the tabbed interface works for Calc, Impress, and Writer. Base and Math don't support it, and it doesn't display correctly on Draw for some reason.
|
Binary file not shown.
After Width: | Height: | Size: 326 B |
Binary file not shown.
After Width: | Height: | Size: 661 B |
@ -0,0 +1,15 @@
|
|||||||
|
#!/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
|
||||||
|
}
|
||||||
|
|
||||||
|
rm -rf ~/libreoffice-ms-theme
|
||||||
|
git clone --depth=1 https://github.com/Botspot/libreoffice-ms-theme || error "Failed to git clone libreoffice-ms-theme repository!"
|
||||||
|
~/libreoffice-ms-theme/apply.sh || error "apply.sh failed"
|
||||||
|
rm -rf ~/libreoffice-ms-theme
|
||||||
|
|
||||||
|
echo "Libreoffice should now have a new look and feel. Try it out! :)"
|
@ -0,0 +1,15 @@
|
|||||||
|
#!/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
|
||||||
|
}
|
||||||
|
|
||||||
|
rm -rf ~/libreoffice-ms-theme
|
||||||
|
git clone --depth=1 https://github.com/Botspot/libreoffice-ms-theme || error "Failed to git clone libreoffice-ms-theme repository!"
|
||||||
|
~/libreoffice-ms-theme/revert.sh || error "apply.sh failed"
|
||||||
|
rm -rf ~/libreoffice-ms-theme
|
||||||
|
|
||||||
|
echo "Your original settings are now restored. Libreoffice should now behave how it was originally."
|
@ -0,0 +1 @@
|
|||||||
|
https://github.com/Botspot/libreoffice-ms-theme
|
Loading…
Reference in New Issue