You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open a terminal(Ctrl + Alt + T), change a path to download folder, and type sudo sh <VMWARE_WORKSTATION_PLAYER_BUNDLE_NAME>.bundle
Terminal font setting
Open a terminal(Ctrl + Alt + T)
Type sudo apt install fonts-nanum-coding -y
Select installed font at terminal's preferences
Key binding
Open a terminal(Ctrl + Alt + T)
Type sudo apt install gnome-tweak-tool -y
Press super, type Tweaks, and select Tweaks to run
Select a menu Keyboard & Mouse and push a button Additional Layout Options
Select a menu Ctrl position and check an option Swap Left Alt with Left Ctrl
IBus setting
Press super, type Region & Language, and select Region & Language to run
Push a button Manage installed Languages
Push a button Install / Remove Languages... add Korean, and reboot
Press super, type Region & Language, and select Region & Language
Push a button + and add Korean(Hangul)
Change Keyboard input method system to IBus
Open a terminal(Ctrl + Alt + T) and type ibus-setup
Select a tab Input Method and click a button Add
Type Korean to search Korean-Hangul and select Korean-Hangul to run
On terminal, type ibus-setup-hangul
Push a button Add at Hangul Toggle Key section
Press LCTL + SPACE and push a button OK
Vim setting
Open a terminal(Ctrl + Alt + T) and type sudo apt update && sudo apt install vim-gtk -y
Type vim ~/.vimrc and set vimrc like below:
set number
syntax on
set softtabstop=2
set tabstop=2
set shiftwidth=2
set expandtab
colorscheme desert
filetype indent on
filetype plugin indent on
if system('uname -s') == "Darwin\n"
set clipboard=unnamed "OSX
else
set clipboard=unnamedplus "Linux
endif
Type cd ~/.ssh, type ssh-keygen -t rsa -b 4096 -C "<[email protected]>", and type ENTER until the progress is done(If you want to get randomart image again later, type ssh-keygen -lv)
Copy whole content of id_rsa.pub(e.g. ssh-rsa AA ... == [email protected]) and add a new SSH key to your GitHub account
cleaning up the workspace folders pointing non-existing locations for i in ~/.config/Code/User/workspaceStorage/*; do if [ -f $i/workspace.json ]; then folder="$(python3 -c "import sys, json; print(json.load(open(sys.argv[1], 'r'))['folder'])" $i/workspace.json 2>/dev/null | sed 's#^file://##;s/+/ /g;s/%\(..\)/\\x\1/g;')"; if [ -n "$folder" ] && [ ! -d "$folder" ]; then echo "Removing workspace $(basename $i) for deleted folder $folder of size $(du -sh $i|cut -f1)"; rm -rfv "$i"; fi; fi; done
on mac: ln -s ~/Library/Application\ Support/Code ~/.config/
#!/bin/bash
# Removes old revisions of snaps
# CLOSE ALL SNAPS BEFORE RUNNING THIS
set -eu
snap list --all | awk '/disabled/{print $1, $3}' |
while read snapname revision; do
snap remove "$snapname" --revision="$revision"
done
Desktop: