LoginSignup
0
0

More than 3 years have passed since last update.

Ubuntu 18.04のおすすめ設定

Posted at

はじめに

Ubuntu 16.04から18.04に乗り換えて、いくつか不便に感じた点を改善する方法を紹介します

設定手順

Ubuntu 17以前のフォントに戻す

個人的にUbuntu 18のフォントは見づらく、VS Codeでプログラムを書いたりするときに見づらかったので、Ubuntu 17以前のフォントに戻しました。

sudo apt install 'fonts-takao-*'

参考サイト:https://linuxfan.info/ubuntu-18-04-change-ja-font

閉じるボタンを左上に変更

Ubuntu 16.04との大きな違いの一つに、閉じるボタンの位置が右上にあることが挙げられます。
私は、Windowsと同じ右上のほうが便利だと感じたのでそのままにしましたが、不便な方は下記設定で左上に変更できます。

sudo apt install -y gnome-tweaks && \
gsettings set org.gnome.desktop.wm.preferences button-layout 'close,minimize,maximize:' 

元に戻す場合は下記コマンドを入力

gsettings reset org.gnome.desktop.wm.preferences button-layout 

参考サイト:https://sicklylife.hatenablog.com/entry/2018/11/13/183424

上のバーに日付を表示

デフォルトだと時刻しか表示されず、不便だったため

sudo apt install -y gnome-tweaks && \
gsettings set org.gnome.desktop.interface clock-show-date true

参考サイト:https://linuxfan.info/gnome-shell-clock-show-date

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0