diff --git a/dotfiles/config/autostart/dropbox.desktop b/dotfiles/config/autostart/dropbox.desktop new file mode 100644 index 00000000..7dbc95d6 --- /dev/null +++ b/dotfiles/config/autostart/dropbox.desktop @@ -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 diff --git a/dotfiles/config/terminator/config b/dotfiles/config/terminator/config index ab9af71f..f60fd685 100644 --- a/dotfiles/config/terminator/config +++ b/dotfiles/config/terminator/config @@ -2,10 +2,12 @@ [keybindings] [profiles] [[default]] - use_system_font = False - font = Monaco for Powerline 10 + palette = "#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#002b36:#cb4b16:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3" background_image = None - foreground_color = "#ffffff" + use_system_font = False + foreground_color = "#839496" + font = Monaco for Powerline 8 + background_color = "#002b36" [layouts] [[default]] [[[child1]]] diff --git a/dotfiles/fonts.conf b/dotfiles/fonts.conf new file mode 100644 index 00000000..6b9cc3ef --- /dev/null +++ b/dotfiles/fonts.conf @@ -0,0 +1,3 @@ + + false + \ No newline at end of file diff --git a/dotfiles/lib/shellenv/functions.sh b/dotfiles/lib/shellenv/functions.sh index 6dc27534..ab21fe65 100644 --- a/dotfiles/lib/shellenv/functions.sh +++ b/dotfiles/lib/shellenv/functions.sh @@ -274,6 +274,9 @@ function python_module_path { function mu4e_directory { if is_osx; then echo "$(brew --prefix mu)/share/emacs/site-lisp/mu4e" + else + # TODO: make this cleaner. + echo "/usr/share/emacs/site-lisp/mu4e" fi } diff --git a/tasks/linux.py b/tasks/linux.py index c24dda41..e0dbefb9 100644 --- a/tasks/linux.py +++ b/tasks/linux.py @@ -16,7 +16,8 @@ linux_pacakges = ('zsh', 'tmux', 'emacs24-nox', 'nmap', 'scala', 'default-jdk', 'zlib1g-dev', 'libxml2-dev', 'libxslt1-dev', 'python-dev', 'libncurses5-dev', 'xbindkeys', 'python3-dev', 'xclip', 'silversearcher-ag', 'npm', 'xdotool', 'gconf-editor', - 'dropbox', 'offlineimap', 'mu4e') + 'dropbox', 'offlineimap', 'mu4e' 'fonts-droid' 'fonts-noto', + 'gnutls-bin', 'libgmime-2.6-, 'libxapian-dev') @ctask def apt_get(ctx): install_command = 'sudo apt-get -y install'