如何在 Ubuntu 14.04 中安装 Mac OS 主题?我搜索了所有谷歌,但在 Ubuntu 的 Mac OS 主题上没有正确的结果,我得到的是 Mac-buntu,它具有统一性,看起来根本不像 mac。帮助我我想在我的 Ubuntu 中获得 mac 主题,因为我无法在 PC 上安装 mac
我安装slingscold
并plank
在终端中键入以下内容:
sudo su
add-apt-repository ppa:noobslab/macbuntu
apt update
apt install slingscold
apt install plank
apt install macbuntu-os-plank-theme-lts-v7
Run Code Online (Sandbox Code Playgroud)
现在我可以启动slingscold
和plank
. 但是我不知道如何将slingscold
图标放在plank
. 通常的方法在slingscold
.
任何帮助将不胜感激。
我已经修改了我的 Ubuntu 17.10 系统,使其看起来像 macOS。现在我对我的终端的行为感到困惑。换行符显示不正确。这个视频展示了我的意思。
修改后的文件是~/.bashrc
. 这些是该文件的新内容:
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for …
Run Code Online (Sandbox Code Playgroud)