1
0

Remove apps with MATE counterparts in my fedora-setup

This commit is contained in:
Noah 2016-06-06 10:07:40 -07:00
parent 1019fd91de
commit 43a88375da
4 changed files with 29 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[user]
name = Noah Petherbridge
email = "(none)" # Use `gu` to set this on a per-repo basis
email = (none)
[alias]
ci = commit
@ -20,3 +20,5 @@
[push]
default = simple
[project]
defaultprojecttype = branch

View File

@ -23,5 +23,17 @@ Host kirsle
Host caskir
HostName caskir.com
User noah
User kirsle
PasswordAuthentication no
ForwardAgent yes
Host mtgit git.mtsvc.net
HostName git.mtsvc.net
User git
ControlMaster auto
ControlPath /tmp/ssh_mux_%h_%p_%r
ControlPersist 30s
Host omega
HostName omega.mtsvc.net
ForwardAgent yes

View File

@ -48,6 +48,9 @@ export NPM_PACKAGES="${HOME}/.npm-global-pkg"
export NODE_PATH="${NPM_PACKAGES}/lib/node_modules:${NODE_PATH}"
export PATH="${NPM_PACKAGES}/bin:$PATH"
# Java
export CLASSPATH="$CLASSPATH:${HOME}/java"
# Reload zshrc
alias rezsh="source ${HOME}/.zshrc"

View File

@ -77,8 +77,16 @@ class Application(object):
self.shell("sudo plymouth-set-default-theme solar && sudo dracut -f")
# My favorite desktop apps.
self.install("firefox", "thunderbird", "eog", "file-roller",
"gedit", "gimp", "libreoffice", "banshee")
self.install(
"firefox",
"thunderbird",
#"eog",
#"file-roller",
#"gedit",
"gimp",
"libreoffice",
"banshee",
)
# Development stuff.
self.install("git", "zsh", "python-virtualenvwrapper")