cleanup of .profile
parent
35fbdca3bd
commit
97e81c911e
|
@ -0,0 +1,33 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
#remove things from $HOME
|
||||||
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
|
export XDG_CONFIG_DIRS="$HOME/.config"
|
||||||
|
export XDG_DATA_HOME="$HOME/.local/share"
|
||||||
|
export XDG_CACHE_HOME="$HOME/.cache"
|
||||||
|
export XDG_DOCUMENTS_DIR="$HOME/docs"
|
||||||
|
export XDG_DOWNLOAD_DIR="$HOME/dl"
|
||||||
|
export XDG_MUSIC_DIR="$HOME/media/audio/music"
|
||||||
|
export XDG_PICTURES_DIR="$HOME/media/img"
|
||||||
|
export XDG_VIDEOS_DIR="$HOME/media/video"
|
||||||
|
export HISTFILE="$XDG_DATA_HOME"/bash/history
|
||||||
|
#XDG_DESKTOP_DIR="$HOME/Desktop"
|
||||||
|
#XDG_PUBLICSHARE_DIR="$HOME/Public"
|
||||||
|
#XDG_TEMPLATES_DIR="$HOME/Templates"
|
||||||
|
|
||||||
|
export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/notmuch-config"
|
||||||
|
export GTK2_RC_FILES="${XDG_CONFIG_HOME:-$HOME/.config}/gtk-2.0/gtkrc-2.0"
|
||||||
|
export WGETRC="${XDG_CONFIG_HOME:-$HOME/.config}/wget/wgetrc"
|
||||||
|
export INPUTRC="${XDG_CONFIG_HOME:-$HOME/.config}/inputrc"
|
||||||
|
#export ALSA_CONFIG_PATH="$XDG_CONFIG_HOME/alsa/asoundrc"
|
||||||
|
export WINEPREFIX="$XDG_DATA_HOME/wineprefixes/default"
|
||||||
|
export STACK_ROOT="$XDG_DATA_HOME"/stack
|
||||||
|
export PASSWORD_STORE_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/password-store"
|
||||||
|
export GNUPGHOME="$XDG_DATA_HOME/gnupg"
|
||||||
|
export CARGO_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/cargo"
|
||||||
|
export GOPATH="${XDG_DATA_HOME:-$HOME/.local/share}/go"
|
||||||
|
export ANSIBLE_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/ansible/ansible.cfg"
|
||||||
|
export TMUX_TMPDIR="$XDG_RUNTIME_DIR"
|
||||||
|
export ANDROID_SDK_HOME="${XDG_CONFIG_HOME:-$HOME/.config}/android"
|
||||||
|
export MBSYNCRC="${XDG_CONFIG_HOME:-$HOME/.config}/mbsync/config"
|
||||||
|
export ELECTRUMDIR="${XDG_DATA_HOME:-$HOME/.local/share}/electrum"
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
BEMENU_CONF="$HOME/.config/bemenu/bemenu_opts.sh"
|
||||||
|
[ -f "$BEMENU_CONF" ] && . "$BEMENU_CONF"
|
||||||
|
#End wayland config
|
||||||
|
|
||||||
|
#make librewolf use wayland
|
||||||
|
export GDK_BACKEND=wayland
|
||||||
|
export MOZ_ENABLE_WAYLAND=1
|
||||||
|
|
|
@ -8,18 +8,19 @@ echo " press return to begin installation. crtl + c to cancel"
|
||||||
read input
|
read input
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
sh ./artix/repo-enable.sh
|
sh ./artix/repo-enable.sh #enables arch repos, lib32 multilib, community, and prompts for universe repo
|
||||||
sh ./artix/config.sh
|
|
||||||
sh ./artix/devel.sh
|
|
||||||
sh ./artix/gaming.sh
|
|
||||||
sh ./artix/runit-config.sh
|
|
||||||
sh ./artix/wireless.sh
|
|
||||||
|
|
||||||
sudo sh -c 'pacman -S - < artix/pkgs/base.txt'
|
sudo sh -c 'pacman -S - < artix/pkgs/base.txt'
|
||||||
sudo sh -c 'pacman -S - < artix/pkgs/user.txt'
|
sudo sh -c 'pacman -S - < artix/pkgs/user.txt'
|
||||||
sudo sh -c 'pacman -S - < artix/pkgs/wm.txt'
|
sudo sh -c 'pacman -S - < artix/pkgs/wm.txt'
|
||||||
sudo sh -c 'yay -S - < artix/pkgs/aur.txt'
|
sudo sh -c 'yay -S - < artix/pkgs/aur.txt'
|
||||||
|
|
||||||
|
sh ./artix/devel.sh
|
||||||
|
sh ./artix/gaming.sh
|
||||||
|
sh ./artix/runit-config.sh
|
||||||
|
sh ./artix/wireless.sh
|
||||||
|
sh ./artix/config.sh
|
||||||
|
|
||||||
#install local git repos, needed for wm.txt
|
#install local git repos, needed for wm.txt
|
||||||
sh ~/.local/scripts/install.sh add-repos ~/.local/installers/repos.txt
|
sh ~/.local/scripts/install.sh add-repos ~/.local/installers/repos.txt
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
#
|
#
|
||||||
# ==================
|
# ==================
|
||||||
|
|
||||||
|
BLOCKFILE="$HOME/.config/blocklist"
|
||||||
|
|
||||||
update() {
|
update() {
|
||||||
mkdir -p ~/.local/share/update_hosts
|
mkdir -p ~/.local/share/update_hosts
|
||||||
cd ~/.local/share/update_hosts
|
cd ~/.local/share/update_hosts
|
||||||
|
@ -26,7 +28,7 @@ update() {
|
||||||
|
|
||||||
curl https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts -o ./.sb_hosts
|
curl https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn/hosts -o ./.sb_hosts
|
||||||
|
|
||||||
[ -f "~/.config/blocklist" ] && sed 's/^/127.0.0.1 /g' ~/.config/blocklist > ./blocklist
|
[ -f "$BLOCKFILE" ] && echo "blocklist file found." && sed 's/^/127.0.0.1 /g' "$BLOCKFILE" > ./blocklist
|
||||||
|
|
||||||
if [ -f "./blocklist" ]; then
|
if [ -f "./blocklist" ]; then
|
||||||
cat ./.hosts.orig ./.swc_hosts ./.sb_hosts ./blocklist > ./hosts
|
cat ./.hosts.orig ./.swc_hosts ./.sb_hosts ./blocklist > ./hosts
|
||||||
|
|
71
.profile
71
.profile
|
@ -3,11 +3,9 @@
|
||||||
# Get the aliases and functions
|
# Get the aliases and functions
|
||||||
#[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|
#[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|
||||||
|
|
||||||
#Wayland config
|
#source ~/.config/shell config files
|
||||||
BEMENU_CONF="$HOME/.config/bemenu/bemenu_opts.sh"
|
. "$HOME"/.config/shell/cleanup.sh
|
||||||
[ -f "$BEMENU_CONF" ] && . "$BEMENU_CONF"
|
. "$HOME"/.config/shell/wayland.sh
|
||||||
#End wayland config
|
|
||||||
|
|
||||||
|
|
||||||
#export PF_ASCII="artix" #set ascii art for pfetch
|
#export PF_ASCII="artix" #set ascii art for pfetch
|
||||||
# OFF by default: shell editor wm de palette
|
# OFF by default: shell editor wm de palette
|
||||||
|
@ -15,59 +13,36 @@ export PF_INFO="ascii title os kernel uptime pkgs memory shell wm"
|
||||||
|
|
||||||
export XCURSOR_THEME=Adwaita
|
export XCURSOR_THEME=Adwaita
|
||||||
|
|
||||||
#make librewolf use wayland
|
|
||||||
export GDK_BACKEND=wayland
|
|
||||||
export MOZ_ENABLE_WAYLAND=1
|
|
||||||
|
|
||||||
#remove things from $HOME
|
|
||||||
export XDG_CONFIG_HOME="$HOME/.config"
|
|
||||||
export XDG_CONFIG_DIRS="$HOME/.config"
|
|
||||||
export XDG_DATA_HOME="$HOME/.local/share"
|
|
||||||
export XDG_CACHE_HOME="$HOME/.cache"
|
|
||||||
export XDG_DOCUMENTS_DIR="$HOME/docs"
|
|
||||||
export XDG_DOWNLOAD_DIR="$HOME/dl"
|
|
||||||
export XDG_MUSIC_DIR="$HOME/media/audio/music"
|
|
||||||
export XDG_PICTURES_DIR="$HOME/media/img"
|
|
||||||
export XDG_VIDEOS_DIR="$HOME/media/video"
|
|
||||||
export HISTFILE="$XDG_DATA_HOME"/bash/history
|
|
||||||
#XDG_DESKTOP_DIR="$HOME/Desktop"
|
|
||||||
#XDG_PUBLICSHARE_DIR="$HOME/Public"
|
|
||||||
#XDG_TEMPLATES_DIR="$HOME/Templates"
|
|
||||||
|
|
||||||
export ZDOTDIR="$HOME/.config/zsh"
|
|
||||||
export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/notmuch-config"
|
|
||||||
export GTK2_RC_FILES="${XDG_CONFIG_HOME:-$HOME/.config}/gtk-2.0/gtkrc-2.0"
|
|
||||||
export WGETRC="${XDG_CONFIG_HOME:-$HOME/.config}/wget/wgetrc"
|
|
||||||
export INPUTRC="${XDG_CONFIG_HOME:-$HOME/.config}/inputrc"
|
|
||||||
#export ALSA_CONFIG_PATH="$XDG_CONFIG_HOME/alsa/asoundrc"
|
|
||||||
export WINEPREFIX="$XDG_DATA_HOME/wineprefixes/default"
|
|
||||||
export STACK_ROOT="$XDG_DATA_HOME"/stack
|
|
||||||
export PASSWORD_STORE_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/password-store"
|
|
||||||
export GNUPGHOME="$XDG_DATA_HOME/gnupg"
|
|
||||||
export CARGO_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/cargo"
|
|
||||||
export GOPATH="${XDG_DATA_HOME:-$HOME/.local/share}/go"
|
|
||||||
export ANSIBLE_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/ansible/ansible.cfg"
|
|
||||||
|
|
||||||
#other settings
|
#other settings
|
||||||
#export QT_QPA_PLATFORMTHEME="gtk2" # Have QT use gtk2 theme. must have qt5-styleplugins installed
|
#export QT_QPA_PLATFORMTHEME="gtk2" # Have QT use gtk2 theme. must have qt5-styleplugins installed
|
||||||
export QT_QPA_PLATFORMTHEME="qt5ct" #have QT use qt5ct theme
|
export QT_QPA_PLATFORMTHEME="qt5ct" #have QT use qt5ct theme
|
||||||
|
|
||||||
export LESSHISTFILE=/dev/null
|
export LESSHISTFILE="-"
|
||||||
|
|
||||||
|
export ZDOTDIR="$HOME/.config/zsh"
|
||||||
|
|
||||||
#get colored man pages
|
#get colored man pages
|
||||||
export LESS_TERMCAP_mb=$'\e[1;32m'
|
#export LESS_TERMCAP_mb=$'\e[1;32m'
|
||||||
export LESS_TERMCAP_md=$'\e[1;32m'
|
#export LESS_TERMCAP_md=$'\e[1;32m'
|
||||||
export LESS_TERMCAP_me=$'\e[0m'
|
#export LESS_TERMCAP_me=$'\e[0m'
|
||||||
export LESS_TERMCAP_se=$'\e[0m'
|
#export LESS_TERMCAP_se=$'\e[0m'
|
||||||
export LESS_TERMCAP_so=$'\e[01;33m'
|
#export LESS_TERMCAP_so=$'\e[01;33m'
|
||||||
export LESS_TERMCAP_ue=$'\e[0m'
|
#export LESS_TERMCAP_ue=$'\e[0m'
|
||||||
export LESS_TERMCAP_us=$'\e[1;4;31m'
|
#export LESS_TERMCAP_us=$'\e[1;4;31m'
|
||||||
|
|
||||||
|
export LESS_TERMCAP_mb="$(printf '%b' '[1;31m')"
|
||||||
|
export LESS_TERMCAP_md="$(printf '%b' '[1;36m')"
|
||||||
|
export LESS_TERMCAP_me="$(printf '%b' '[0m')"
|
||||||
|
export LESS_TERMCAP_so="$(printf '%b' '[01;44;33m')"
|
||||||
|
export LESS_TERMCAP_se="$(printf '%b' '[0m')"
|
||||||
|
export LESS_TERMCAP_us="$(printf '%b' '[1;32m')"
|
||||||
|
export LESS_TERMCAP_ue="$(printf '%b' '[0m')"
|
||||||
|
|
||||||
export MANPAGER=less
|
export MANPAGER=less
|
||||||
|
|
||||||
#set preferred programs
|
#set preferred programs
|
||||||
export EDITOR=vim
|
export EDITOR=nvim
|
||||||
export VISUAL=vim
|
export VISUAL=nvim
|
||||||
export BROWSER=browser.sh
|
export BROWSER=browser.sh
|
||||||
export TERMINAL=alacritty
|
export TERMINAL=alacritty
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue