linux tweaks.

This commit is contained in:
Ivan Malison 2014-12-06 12:33:56 -08:00
parent a4f5002112
commit af8d62d77c
5 changed files with 23 additions and 4 deletions

View File

@ -0,0 +1,10 @@
[Desktop Entry]
Name=Dropbox
GenericName=File Synchronizer
Comment=Sync your files across computers and to the web
Exec=dropbox start -i
Terminal=false
Type=Application
Icon=dropbox
Categories=Network;FileTransfer;
StartupNotify=false

View File

@ -2,10 +2,12 @@
[keybindings] [keybindings]
[profiles] [profiles]
[[default]] [[default]]
use_system_font = False palette = "#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#002b36:#cb4b16:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3"
font = Monaco for Powerline 10
background_image = None background_image = None
foreground_color = "#ffffff" use_system_font = False
foreground_color = "#839496"
font = Monaco for Powerline 8
background_color = "#002b36"
[layouts] [layouts]
[[default]] [[default]]
[[[child1]]] [[[child1]]]

3
dotfiles/fonts.conf Normal file
View File

@ -0,0 +1,3 @@
<match target="font" >
<edit name="embeddedbitmap" mode="assign"><bool>false</bool></edit>
</match>

View File

@ -274,6 +274,9 @@ function python_module_path {
function mu4e_directory { function mu4e_directory {
if is_osx; then if is_osx; then
echo "$(brew --prefix mu)/share/emacs/site-lisp/mu4e" echo "$(brew --prefix mu)/share/emacs/site-lisp/mu4e"
else
# TODO: make this cleaner.
echo "/usr/share/emacs/site-lisp/mu4e"
fi fi
} }

View File

@ -16,7 +16,8 @@ linux_pacakges = ('zsh', 'tmux', 'emacs24-nox', 'nmap', 'scala', 'default-jdk',
'zlib1g-dev', 'libxml2-dev', 'libxslt1-dev', 'python-dev', 'zlib1g-dev', 'libxml2-dev', 'libxslt1-dev', 'python-dev',
'libncurses5-dev', 'xbindkeys', 'python3-dev', 'xclip', 'libncurses5-dev', 'xbindkeys', 'python3-dev', 'xclip',
'silversearcher-ag', 'npm', 'xdotool', 'gconf-editor', 'silversearcher-ag', 'npm', 'xdotool', 'gconf-editor',
'dropbox', 'offlineimap', 'mu4e') 'dropbox', 'offlineimap', 'mu4e' 'fonts-droid' 'fonts-noto',
'gnutls-bin', 'libgmime-2.6-, 'libxapian-dev')
@ctask @ctask
def apt_get(ctx): def apt_get(ctx):
install_command = 'sudo apt-get -y install' install_command = 'sudo apt-get -y install'