Last active
December 14, 2015 09:08
-
-
Save you21979/5062331 to your computer and use it in GitHub Desktop.
ubuntuデスクトップ環境設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# powersaver | |
add-apt-repository ppa:webupd8team/jupiter | |
# vaapi environment | |
add-apt-repository ppa:xorg-edgers/ppa | |
# vaapi mplayer | |
add-apt-repository ppa:sander-vangrieken/vaapi | |
# wine | |
add-apt-repository ppa:ubuntu-wine/ppa | |
# update | |
apt-get update | |
apt-get upgrade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vi /etc/sysfs.conf | |
devices/platform/smapi/BAT0/start_charge_thresh = 50 | |
devices/platform/smapi/BAT0/stop_charge_thresh = 80 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.アドレスバーにabout:flagsと入力 | |
2.以下の2つの項目を有効にする。 | |
■GPU アクセラレート合成:グラフィックス プロセッサ ユニット(GPU)ハードウェアを使用して、ウェブページの 3D CSS や高性能の合成を可能にします。 | |
■GPU アクセラレート キャンバス 2D:グラフィックス プロセッサ ユニット(GPU)ハードウェアを使用してレンダリングすることで、2D コンテキストを持つキャンバス タグのパフォーマンスを向上できます。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# google-ime like ime | |
apt-get install ibus-mozc <<<y | |
# vim | |
apt-get install vim vim-gtk <<<y | |
# terminal | |
apt-get install byobu <<<y | |
# opengl | |
apt-get install mesa-utils <<<y | |
# zram | |
apt-get install zram-config <<<y | |
# powersaver | |
apt-get install pyjupiter <<<y | |
# vaapi environment | |
apt-get install vainfo libva-intel-vaapi-driver <<<y | |
apt-get install xserver-xorg-core i965-va-driver <<<y | |
# vaapi mplayer | |
apt-get install mplayer-vaapi <<<y | |
apt-get install smplayer <<<y | |
# wine and mono | |
apt-get install wine <<<y | |
apt-get install mono-2.0 <<<y | |
# vpn | |
apt-get install openvpn <<<y | |
# samba-fs | |
apt-get install cifs-util <<<y | |
# ubuntu system | |
apt-get install gconf-editor dconf-tools <<<y | |
# passwd-manager | |
apt-get install keepass2 <<<y | |
# battery-manager | |
apt-get install tp-smapi-dkms | |
apt-get install sysfsutils | |
# audio player | |
apt-get install clementine | |
# remove spy | |
apt-get remove unity-lens-video unity-scope-video-remote unity-lens-shopping unity-lens-music unity-lens-photos unity-lens-radios unity-lens-gwibber <<<y | |
apt-get autoremove | |
apt-get upgrade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# gcc | |
apt-get install gcc | |
# go | |
apt-get install golang-go | |
# F# | |
apt-get install mono-complete | |
git clone https://github.com/fsharp/fsharp | |
apt-get install autoconf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
market | |
------ | |
system load indicator | |
7zip | |
gparted | |
3rd party | |
--------------- | |
dropbox https://www.dropbox.com/ | |
chrome http://www.google.co.jp/intl/ja/chrome/browser/ | |
virtualbox https://www.virtualbox.org/ | |
skype http://www.skype.com/ja/download-skype/skype-for-computer/ | |
synergy http://synergy-foss.org/ja/ | |
visudo | |
--------------------------------- | |
%sudo ALL=(ALL:ALL) NOPASSWD: ALL | |
smplayer | |
-------- | |
オプション>環境設定>全般>ビデオ | |
出力ドライバー vaapi | |
オプション>環境設定>全般>全般 | |
スクリーンショット 無効 | |
タッチパッド無効化 | |
/usr/share/X11/xorg.conf.d/50-synaptics.conf | |
--------------------------------------------- | |
Section "InputClass" | |
Identifier "no need for accelerometers in X" | |
MatchProduct "SynPS/2 Synaptics TouchPad" | |
Option "Ignore" "on" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment