Ubuntu のどんな調整、ハック、または変更がなくては生きていけないと思いますか?

Ubuntu のどんな調整、ハック、または変更がなくては生きていけないと思いますか?

Ubuntu のどのような調整、ハック、または変更が不可欠だと思いますか? Gnome2 または Gnome3 ベースの Ubuntu かもしれません。

ルール:

  • Ubuntuのバージョンを記載してください(一般的な調整でない場合)
  • 簡単な「ハウツー」を記載する
  • 可能であれば、オリジナルコンテンツ(フォーラム、ブログ、Web サイトなど)へのリンクを含めます。

答え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'

about:config 内の Firefox に関するもの

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

答え2

興味深い質問ですね。私は実際にこのことについて数分間考えましたが、ほとんど止まっていることに気づきました微調整Unityの本当に好きなところは、追加機能が差し込む以前のバージョンのように。Unity と通信して、Unity がそれを統合するだけです。たとえば、天気インジケーターを追加しました。これは、雨が降っているかどうかを確認するために窓の外を見る必要がないため、非常に便利です。 :)

ただし、いくつかのアプリに静的クイックリストをいくつか追加しました。ターミナルのショートカットがあるので、リモート画面に簡単に接続できます。プロジェクトに関連するファイルで Gedit を開くためのショートカットを追加しましたが、これはあまり役に立たないので、代わりに動的クイックリストとして GEdit に組み込む必要があります。

しかし、これらのことを考えながら、1つ私にとってなくてはならない調整だと思われるものが、明らかになりました。bzr。私は設定ディレクトリをバージョン管理下に置きました。これは、いつでもいつ設定が変更されました。その通り何が変わったのかがすぐにわかり、いつでも簡単に以前のバージョンに戻すことができます。これは非常に良い機能で、誰にでもお勧めできます。

関連情報