diff options
author | Urbain Vaes <urbain@vaes.uk> | 2019-04-03 15:11:22 +0200 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2019-04-03 15:13:00 +0200 |
commit | e3d81be587cad7b7c7ed094281d8867255d49bac (patch) | |
tree | e0dc7f8d0925d7fd55f00502b7629606f39b11b6 | |
parent | a0d3fb4b6ae53a6942ec072246587fa84bdf72da (diff) |
Fix gui package
-rw-r--r-- | arch/gui/PKGBUILD | 1 | ||||
-rw-r--r-- | arch/local-packages/PKGBUILD | 7 | ||||
-rw-r--r-- | arch/local/PKGBUILD | 16 | ||||
-rw-r--r-- | zsh/.zshrc | 5 |
4 files changed, 19 insertions, 10 deletions
diff --git a/arch/gui/PKGBUILD b/arch/gui/PKGBUILD index 12676a4..7a4e2cb 100644 --- a/arch/gui/PKGBUILD +++ b/arch/gui/PKGBUILD @@ -46,7 +46,6 @@ depends=( surfraw ttf-dejavu ttf-ubuntu-font-family - ttf-computer-modern-fonts ttf-font-awesome urxvt-perls vlc diff --git a/arch/local-packages/PKGBUILD b/arch/local-packages/PKGBUILD deleted file mode 100644 index 9ac2a07..0000000 --- a/arch/local-packages/PKGBUILD +++ /dev/null @@ -1,7 +0,0 @@ -# yaourt -P && makepkg -i -pkgname=local-packages -pkgver=0 -pkgrel=1 -arch=(any) -depends=(bashmount bitlbee-facebook light myrepos rofi-dmenu spotify tmuxinator - ttf-monaco ubuntu-wallpapers) diff --git a/arch/local/PKGBUILD b/arch/local/PKGBUILD new file mode 100644 index 0000000..5c6055b --- /dev/null +++ b/arch/local/PKGBUILD @@ -0,0 +1,16 @@ +# yaourt -P && makepkg -i +pkgname=local-packages +pkgver=0 +pkgrel=1 +arch=(any) +depends=( + bashmount + bitlbee-facebook + myrepos + rofi-dmenu + spotify + tmuxinator + ttf-monaco ubuntu-wallpapers + ttf-computer-modern-fonts + yay-bin +) @@ -65,6 +65,7 @@ fi source "$HOME/.zsh/zgen/zgen.zsh" FZF_MARKS_PLUGIN_ZSH=$HOME/Dropbox/projects/fzf-marks/fzf-marks.plugin.zsh +FZF_MARKS_COMMAND='fzf --height 40% --reverse -e' [ -f "$FZF_MARKS_PLUGIN_ZSH" ] && source "$FZF_MARKS_PLUGIN_ZSH" if ! zgen saved; then @@ -180,8 +181,8 @@ alias renet='systemctl restart NetworkManager.service' # Applications alias -s pdf='xdg-open' -# Global -alias -g grep='grep --color=auto --exclude-dir={.git,.hg}' +# Remove global because it breaks: pacman -D --asdeps grep +alias grep='grep --color=auto --exclude-dir={.git,.hg}' # Pacman alias pacup='sudo pacman -Syu' |