From 2a3f9c793f807a70ee30cac88220e818e00b860b Mon Sep 17 00:00:00 2001 From: Clay Gomera Date: Fri, 16 Sep 2022 11:11:22 -0400 Subject: [PATCH] updated --- user/.bash_profile | 9 ++++----- user/.bashrc | 13 +++++++------ user/.config/alacritty/alacritty.yml | 4 ++-- user/.xinitrc | 6 +++--- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/user/.bash_profile b/user/.bash_profile index a2d470673..a5c16a5df 100644 --- a/user/.bash_profile +++ b/user/.bash_profile @@ -14,16 +14,15 @@ then fi ### ENVIRONMENT VARIABLES -export GST_VAAPI_ALL_DRIVERS=1 export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in terminal export VISUAL="emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode export READER="zathura" # Zathura as the pdf viewer export TERMINAL="alacritty" # Alacritty as the default terminal emulator export BROWSER="qutebrowser" # Qutebrowser as the default web browser -export WM="dwm" # DWM as the default Window Manager -export XDG_DATA_HOME=${XDG_DATA_HOME:="$HOME/.local/share"} -export XDG_CACHE_HOME=${XDG_CACHE_HOME:="$HOME/.cache"} -export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:="$HOME/.config"} +export WM="awesome" # Awesomewm as the default Window Manager +export XDG_DATA_HOME="${XDG_DATA_HOME:="$HOME/.local/share"}" +export XDG_CACHE_HOME="${XDG_CACHE_HOME:="$HOME/.cache"}" +export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:="$HOME/.config"}" ### BASHRC source "$HOME"/.bashrc # Load the bashrc diff --git a/user/.bashrc b/user/.bashrc index 8a0643d39..ff4d25c40 100644 --- a/user/.bashrc +++ b/user/.bashrc @@ -138,12 +138,13 @@ alias \ # pacman alias \ - xb-up="sudo xbps-install -Su && xcheckrestart" \ - xb-get="sudo xbps-install -S" \ - xb-rmv="sudo xbps-remove -R" \ - xb-rmv-sec="sudo xbps-remove" \ - xb-qry="sudo xbps-query -R" \ - xb-cln="sudo xbps-remove -Oo" \ + xb-up="sudo vpm update -Su && xcheckrestart" \ + xb-get="sudo vpm install" \ + xb-rmv="sudo vpm remove -R" \ + xb-rmv-sec="sudo vpm remove" \ + xb-qry="sudo vpm search" \ + xb-cln="sudo vpm cleanup -o" \ + xb-src="$HOME/.local/share/void-packages/xbps-src" # colorize grep output (good for log files) alias \ diff --git a/user/.config/alacritty/alacritty.yml b/user/.config/alacritty/alacritty.yml index fd657d5b5..b79c5d7fe 100644 --- a/user/.config/alacritty/alacritty.yml +++ b/user/.config/alacritty/alacritty.yml @@ -101,7 +101,7 @@ schemes: # Default colors primary: # hard contrast: background = '0x1d2021' - background: '#282828' + background: '#1d2021' # soft contrast: background = '0x32302f' foreground: '#ebdbb2' @@ -358,7 +358,7 @@ env: ## Window settigns window: - opacity: 0.60 + opacity: 0.96 padding: x: 6 y: 6 diff --git a/user/.xinitrc b/user/.xinitrc index d56c7c8a8..8ba10d3e7 100755 --- a/user/.xinitrc +++ b/user/.xinitrc @@ -30,10 +30,10 @@ if [ -f "$usermodmap" ]; then fi ### ENVIRONMENT VARIABLES -#export GST_VAAPI_ALL_DRIVERS=1 +export GST_VAAPI_ALL_DRIVERS=1 export MOZ_USE_XINPUT2=1 -export EDITOR="nvim" # $EDITOR use neovim in terminal -export VISUAL="alacritty -e nvim" # $VISUAL use neovim in terminal +export EDITOR="emacsclient -t -a ''" # $EDITOR use Emacs in terminal +export VISUAL="emacsclient -c -a emacs" # $VISUAL use Emacs in GUI mode export READER="zathura" # Zathura as the pdf viewer export TERMINAL="alacritty" # Alacritty as the default terminal emulator export BROWSER="qutebrowser" # Qutebrowser as the default web browser