Ubuntu16.04配置Mac主题

作者:tongqingliu
转载请注明出处:http://www.cnblogs.com/liutongqing/p/7072878.html

觉得有帮助?欢迎来打赏

Ubuntu配置Mac主题

下载Mac壁纸
链接: https://pan.baidu.com/s/1c19iNvE 密码: yd2h

更新

sudo apt-get update
sudo apt-get upgrade

安装unity-tweak-tool

sudo apt-get install unity-tweak-tool

安装macbuntu 主题

sudo add-apt-repository ppa:noobslab/macbuntu
sudo apt-get update
sudo apt-get install macbuntu-os-icons-lts-v7
sudo apt-get install macbuntu-os-ithemes-lts-v7

卸载命令:

cd /usr/share/icons/mac-cursors && sudo ./uninstall-mac-cursors.sh
sudo apt-get remove macbuntu-os-icons-lts-v7 macbuntu-os-ithemes-lts-v7

将面板上的 ‘Ubuntu Desktop’ 文字替换 ‘Mac’

cd && wget -O Mac.po http://drive.noobslab.com/data/Mac/change-name-on-panel/mac.po
cd /usr/share/locale/en/LC_MESSAGES
sudo msgfmt -o unity.mo ~/Mac.po
rm ~/Mac.po
cd

语言上如果是其他非英语语言,将 /en 做相应修改,比如中文

cd && wget -O Mac.po http://drive.noobslab.com/data/Mac/change-name-on-panel/mac.po
cd /usr/share/locale/ch_ZN/LC_MESSAGES
sudo msgfmt -o unity.mo ~/Mac.po
rm ~/Mac.po
cd

恢复原来的桌面文字命令:

cd && wget -O Ubuntu.po http://drive.noobslab.com/data/Mac/change-name-on-panel/ubuntu.po
cd /usr/share/locale/en/LC_MESSAGES
sudo msgfmt -o unity.mo ~/Ubuntu.po
rm ~/Ubuntu.po
cd

启动器上苹果Logo

wget -O launcher_bfb.png http://drive.noobslab.com/data/Mac/launcher-logo/apple/launcher_bfb.png
sudo mv launcher_bfb.png /usr/share/unity/icons/

恢复图标:

wget -O launcher_bfb.png http://drive.noobslab.com/data/Mac/launcher-logo/ubuntu/launcher_bfb.png
sudo mv launcher_bfb.png /usr/share/unity/icons/

安装docky,可以从Ubuntu软件中安装。
打开Docky,进行如下设置;
Markdown
为Docky添加或删除应用:
右键有锁定到docky,执行即锁定。将图标直接拖出去即可删除锁定。

效果如下:
Markdown
参考

http://www.linuxidc.com/Linux/2016-06/131947.htm

原文地址:https://www.cnblogs.com/liutongqing/p/7257268.html