您离不开哪些 Ubuntu 调整、破解或修改?

您离不开哪些 Ubuntu 调整、破解或修改?

您认为哪些 Ubuntu 调整、修改或修改必不可少?它可能是基于 Gnome2 或 Gnome3 的 Ubuntu。

规则:

  • 提及 Ubuntu 版本(如果不是一般调整)
  • 包含简短的“操作方法”
  • 如果可能,请包含原始内容(来自论坛、博客、网站)的链接。

答案1

我使用一个脚本来帮我做很多调整、配置和修改。其中许多操作可以手动完成,但使用脚本比在菜单和窗口中摸索要容易得多。

# Enable the firewall
sudo ufw enable

# Get some codecs to play media
sudo apt-get install gstreamer0.10-plugins-ugly gstreamer0.10-ffmpeg

# Add third-party PPA repositories
sudo add-apt-repository ppa:ubuntu-wine/ppa

# Get some software I like
sudo apt-get install synaptic gnome-session-fallback blender chromium-browser gimp lm-sensors php5-cli stjerm wine1.3 xchat

# Get rid of annoying suggestions to buy music from the store
sudo apt-get remove unity-scope-musicstores

# Ignore HIG, we want a classic black terminal
gconftool-2 --set --type bool /apps/gnome-terminal/profiles/Default/use_theme_colors false
gconftool-2 --set --type string /apps/gnome-terminal/profiles/Default/background_color '#000000000000'
gconftool-2 --set --type string /apps/gnome-terminal/profiles/Default/foreground_color '#FFFFFFFFFFFF'

# Save space by hiding my name from the me-menu, I already know my name, tyvm
gsettings set com.canonical.indicator.session show-real-name-on-panel false
gsettings set org.gnome.desktop.interface show-input-method-menu false
gsettings set org.gnome.desktop.interface show-unicode-menu false

# I need alt+click for apps and games, so lets use WinKey instead
gconftool-2 --set --type string /apps/metacity/general/mouse_button_modifier '<Super>'

# Use WinKey instead of Alt for the window management hotkeys (Metacity)
gconftool-2 --set --type string /apps/metacity/window_keybindings/begin_move '<Super>F7'
gconftool-2 --set --type string /apps/metacity/window_keybindings/begin_resize '<Super>F8'
gconftool-2 --set --type string /apps/metacity/window_keybindings/maximize '<Super>F10'
gconftool-2 --set --type string /apps/metacity/window_keybindings/minimize '<Super>F9'
gconftool-2 --set --type string /apps/metacity/window_keybindings/unmaximize '<Super>F5'

# Use WinKey instead of Alt for the window management hotkeys (Compiz)
gconftool-2 --set --type string /apps/compiz-1/plugins/core/screen0/options/maximize_window_key '<Super>F10'
gconftool-2 --set --type string /apps/compiz-1/plugins/core/screen0/options/minimize_window_key '<Super>F9'
gconftool-2 --set --type string /apps/compiz-1/plugins/core/screen0/options/unmaximize_window_key '<Super>F5'
gconftool-2 --set --type string /apps/compiz-1/plugins/move/screen0/options/initiate_key '<Super>F7'
gconftool-2 --set --type string /apps/compiz-1/plugins/resize/screen0/options/initiate_key '<Super>F8'

# Settings for the civilized world
gconftool-2 --set --type string /apps/panel3-applets/clock/format '24-hour'
gconftool-2 --set --type string /apps/panel3-applets/clock/speed_unit 'm/s'
gconftool-2 --set --type string /apps/panel3-applets/clock/temperature_unit 'C'

Firefox 的 about:config 内容

privacy.donottrackheader.enabled;true
browser.tabs.closeButtons;3

答案2

有趣的问题。我实际上花了几分钟思考这个问题,然后我意识到我基本上已经停止了调整本身。我非常喜欢 Unity 的一点是,添加不会插入就像在旧版本中一样。它们只是与 Unity 通信,然后 Unity 将其集成。例如,我添加了一个天气指示器,这真的很棒,因为这意味着我不必看着窗外看是否下雨。:)

不过,我已经为一些应用程序添加了一些静态快捷列表。我有终端的快捷方式,因此我可以非常轻松地连接到远程屏幕。我添加了一个快捷方式来打开 Gedit,其中包含与项目相关的文件,但这并不是很有用,应该将其作为动态快捷列表内置到 GEdit 中。

但是,在思考这些事情的时候,你可能会认为这是我生活中不可缺少的调整,这一点变得显而易见。bzr。我把我的配置目录放在版本控制之下。这意味着我可以随时看到什么时候配置已发生改变,确切地有什么变化,我随时可以轻松恢复到早期版本。这非常好,我会向任何人推荐它。

相关内容