Skip to content

Instantly share code, notes, and snippets.

@mort3za
Last active February 11, 2020 13:20
Show Gist options
  • Save mort3za/8fb4a406bd5d8dbcd7082bfd40a410ec to your computer and use it in GitHub Desktop.
Save mort3za/8fb4a406bd5d8dbcd7082bfd40a410ec to your computer and use it in GitHub Desktop.
Things to do after install ubuntu

1. reduce delay time of repeat keys (in universal settings)

2. enable community sources in update settings

4. instlal apps

indicator-multiload, terminator, golden dict (and set hot-key), nemo (Files manager), vscode, git, chromium, keepassxc, smplayer, telegram, dropbox, filezilla, uget, gnome Tweaks., kazam

5. add keyboard layout(s) (search Region in all apps) and set shortcut left-alt left-shift for swtich langs in tweaks -> additional layout options

6. install tor and bridges

sudo apt install tor obfs4proxy send an email to bridges@torproject.org with body: get transport obfs4 and copy the reply to /etc/tor/torrc

UseBridges 1
ClientTransportPlugin obfs3 exec /usr/bin/obfsproxy managed
ClientTransportPlugin obfs4 exec /usr/bin/obfs4proxy managed
bridge THE_ADDRESS_1
bridge THE_ADDRESS_2
bridge THE_ADDRESS_3

replace THE_ADDRESS_# with your bridges (in email reply) sudo service tor restart set system proxy to 127.0.0.1:9050

8. minimize app when click on icon on dock

gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'

9. set Nemo as default filemanager

xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search

10. install fzf (fuzzy file finder in terminal) https://github.com/junegunn/fzf#installation

11. set terminator as default terminal (by ctrl+shift+t or other ways)

sudo update-alternatives --config x-terminal-emulator

@mort3za
Copy link
Author

mort3za commented Jul 3, 2019

build vim +clipboard

sudo apt install libx11-dev libxtst-dev libxt-dev libsm-dev libxpm-dev
git clone git@github.com:vim/vim.git
cd vim
./configure --enable-pythoninterp --with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu --enable-gui=auto --enable-gtk2-check --with-x --prefix=/usr
make
sudo make install

# check if +clipboard is in output:
vim --version | grep clipboard

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment