Saturday, November 1, 2014

Настройки Linux

Установка dconf editor:
sudo apt-get install dconf-editor

Автомонтирование флешек:
org.cinnamon.desktop.media-handling  - для Cinnamon
org.gnome.desktop.media-handling  - для чистого Gnome
  • automount - автоматическое монтирование флешек
  • automount-open - автоматическое открытие окна проводника для примонтированного носителя

Перемещение окна по Alt + Left Click:
1) org.cinnamon.desktop.wm.preferences  - для Cinnamon
    org.gnome.desktop.wm.preferences  - для чистого Gnome
  • mouse-buton-modifier - Modifier to use for modified window click actions (left - move the window, middle - resize the window, right - show the window menu, <empty> - no buttons used)
2) System Settings -> Windows -> Moving and Resizing Windows -> combobox "Special key to move windows" - установить пустое значение


Настройка параметров питания:
org.cinnamon.settings-daemon.plugins.power  - для Cinnamon
org.gnome.settings-daemon.plugins.power  - для чистого Gnome

  • critical-battery-action => hibernate
  • idle-dim-battery => false
По умолчанию используется расчет времени (в секундах), оставшегося до разряда батареи.
Настраиваем:
  • time-action  => 120
  • time-critical => 300
  • time-low      => 1200
Если нужно опираться на процент заряда, снимаем галочку use-time-for-policy и настраиваем:
  • use-time-for-policy => false
  • percentage-action   => 5
  • percentage-critical  => 6
  • percentage-low       => 10
Внимание: 
после изменения параметров питания нужно перезагрузить систему, чтобы параметры вступили в силу



laptop-mode::usb-autosuspend

Симптомы:
При работе ноутбука от батареи постоянно засыпает мышь, если ей несколько секунд не пользоваться. 
Просыпается только после нажатия кнопки на ней. 
При работе от сети такого нет.
Лечение:
Отключить usb-autosuspend (CONTROL_USB_AUTOSUSPEND=0) в /etc/laptop-mode/conf.d/usb-autosuspend.conf


Pantheon terminal color scheme 
org => pantheon => terminal => settings
Color schemes for pantheon


Touchpad 
org > gnome > settings-daemon > peripherals > touchpad


Disable logout by Ctrl+Alt+Del
org > gnome > settings-daemon > plugins > media-keys > logout = ''


Способы отключения Ctrl+Shift+U (input method)
  1. killall -9 ibus-daemon в автозагрузку
  2. im-config -n xim && sudo restart

Tiny scrollbars and sheets' tabs bar height in libreoffice calc
Edit your gtk2 theme as followed.
Open: 
/usr/share/themes/elementary/gtk-2.0/gtkrc
and raise value of :
GtkScrollbar ::slider-width

Beware it will also modify size of scrolling bars in any gtk2 apps, like Firefox, Thunderbird or LibreOffice. 
12-16 is a nice value on my screen.


Disable sleep when closing laptop lid
Ubuntu 13.10 uses systemd-logind and it handles the lid close event. 
To disable entering the sleep mode edit the /etc/systemd/logind.conf file and uncomment/modify/add the line:
HandleLidSwitch=ignore
Then execute sudo restart systemd-logind or simply reboot.
(Or sudo systemctl restart systemd-logind.service if the previous command didn't give result)