updated: even cleaner home
This commit is contained in:
parent
8987f4858e
commit
38f5dda8a5
4 changed files with 162 additions and 44 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
## ____ __
|
## ____ __
|
||||||
## / __ \_________ _/ /_____
|
## / __ \_________ _/ /_____
|
||||||
## / / / / ___/ __ `/ //_/ _ \
|
## / / / / ___/ __ `/ //_/ _ \
|
||||||
|
@ -6,32 +6,26 @@
|
||||||
## /_____/_/ \__,_/_/|_|\___/ My custom bash_profile config
|
## /_____/_/ \__,_/_/|_|\___/ My custom bash_profile config
|
||||||
##
|
##
|
||||||
|
|
||||||
# Starting xsession
|
|
||||||
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
|
|
||||||
startx -- vt1 -keeptty &>/dev/null
|
|
||||||
logout
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Home folders
|
# Home folders
|
||||||
export XDG_DATA_HOME="$HOME/.local/share"
|
export XDG_DATA_HOME="$HOME/.local/share"
|
||||||
export XDG_CACHE_HOME="$HOME/.cache"
|
export XDG_CACHE_HOME="$HOME/.cache"
|
||||||
export XDG_CONFIG_HOME="$HOME/.config"
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
|
|
||||||
|
export X11CFGDIR="$XDG_CONFIG_HOME/X11"
|
||||||
|
export XINITRC="$X11CFGDIR/xinitrc"
|
||||||
|
|
||||||
# Sanely export XDG Base dir variables
|
# Sanely export XDG Base dir variables
|
||||||
eval "$(sed 's/^[^#].*/export &/g;t;d' ~/.config/user-dirs.dirs)"
|
eval "$(sed 's/^[^#].*/export &/g;t;d' ~/.config/user-dirs.dirs)"
|
||||||
|
|
||||||
# Clean home
|
# Clean home
|
||||||
export W3M_DIR="$XDG_DATA_HOME/w3m"
|
export W3M_DIR="$XDG_DATA_HOME/w3m"
|
||||||
export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0"
|
export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0"
|
||||||
export WGETRC="$HOME/.config/wget/wgetrc"
|
export WGETDIR="$XDG_CONFIG_HOME/wget"
|
||||||
export INPUTRC="$HOME/.config/inputrc"
|
export WGETRC="$WGETDIR/wgetrc"
|
||||||
|
export INPUTRC="$HOME/.config/X11/inputrc"
|
||||||
export GNUPGHOME="$HOME/.local/share/gnupg"
|
export GNUPGHOME="$HOME/.local/share/gnupg"
|
||||||
export LESSHISTFILE="-"
|
export LESSHISTFILE="-"
|
||||||
|
export BASHRC="$HOME/.bashrc"
|
||||||
# Create GNUPG & WGETRC directories if they don't exist
|
|
||||||
if [ ! -d "$HOME/.config/wget/" ] && [ ! -d "$GNUPGHOME" ]; then
|
|
||||||
mkdir -p "$HOME/.config/wget/" "$GNUPGHOME"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Default apps
|
# Default apps
|
||||||
export TERMINAL="wezterm"
|
export TERMINAL="wezterm"
|
||||||
|
@ -41,4 +35,15 @@ export BROWSER=org.mozilla.firefox
|
||||||
export VIEWER="zathura"
|
export VIEWER="zathura"
|
||||||
|
|
||||||
# Bashrc
|
# Bashrc
|
||||||
source "$HOME"/.bashrc
|
source "$BASHRC"
|
||||||
|
|
||||||
|
# Create config directories if they don't exist
|
||||||
|
if [ ! -d "$WGETDIR" ] || [ ! -d "$GNUPGHOME" ]; then
|
||||||
|
mkdir -p "$WGETDIR" "$GNUPGHOME"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Starting xsession
|
||||||
|
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
|
||||||
|
startx "$XINITRC" -- vt1 -keeptty &>/dev/null
|
||||||
|
logout
|
||||||
|
fi
|
||||||
|
|
|
@ -28,11 +28,6 @@ if [ -f "$usermodmap" ]; then
|
||||||
xmodmap "$usermodmap"
|
xmodmap "$usermodmap"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Home folders
|
|
||||||
export XDG_DATA_HOME="$HOME/.local/share"
|
|
||||||
export XDG_CACHE_HOME="$HOME/.cache"
|
|
||||||
export XDG_CONFIG_HOME="$HOME/.config"
|
|
||||||
|
|
||||||
# X11 Stuff
|
# X11 Stuff
|
||||||
export MOZ_USE_XINPUT2=1
|
export MOZ_USE_XINPUT2=1
|
||||||
export QT_STYLE_OVERRIDE=kvantum
|
export QT_STYLE_OVERRIDE=kvantum
|
||||||
|
@ -44,28 +39,5 @@ export XCURSOR_THEME="Simp1e-Gruvbox-Dark"
|
||||||
export GTK_THEME="gruvbox-dark-gtk"
|
export GTK_THEME="gruvbox-dark-gtk"
|
||||||
export GTK_ICON_THEME="gruvbox-dark-icons-gtk"
|
export GTK_ICON_THEME="gruvbox-dark-icons-gtk"
|
||||||
|
|
||||||
# Sanely export XDG Base dir variables
|
|
||||||
eval "$(sed 's/^[^#].*/export &/g;t;d' ~/.config/user-dirs.dirs)"
|
|
||||||
|
|
||||||
# Clean home
|
|
||||||
export W3M_DIR="$XDG_DATA_HOME/w3m"
|
|
||||||
export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0"
|
|
||||||
export WGETRC="$HOME/.config/wget/wgetrc"
|
|
||||||
export INPUTRC="$HOME/.config/inputrc"
|
|
||||||
export GNUPGHOME="$HOME/.local/share/gnupg"
|
|
||||||
export LESSHISTFILE="-"
|
|
||||||
|
|
||||||
# Create GNUPG & WGETRC directories if they don't exist
|
|
||||||
if [ ! -d "$HOME/.config/wget/" ] && [ ! -d "$GNUPGHOME" ]; then
|
|
||||||
mkdir -p "$HOME/.config/wget/" "$GNUPGHOME"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Default apps
|
|
||||||
export TERMINAL="wezterm"
|
|
||||||
export EDITOR="$HOME/.local/bin/lvim"
|
|
||||||
export VISUAL="neovide --neovim-bin $EDITOR"
|
|
||||||
export BROWSER=org.mozilla.firefox
|
|
||||||
export VIEWER="zathura"
|
|
||||||
|
|
||||||
# start window manager / desktop environment
|
# start window manager / desktop environment
|
||||||
dbus-launch awesome
|
dbus-launch awesome
|
|
@ -18,7 +18,7 @@ set EDITOR "$HOME/.local/bin/lvim"
|
||||||
set VISUAL neovide --neovim-bin $EDITOR
|
set VISUAL neovide --neovim-bin $EDITOR
|
||||||
|
|
||||||
### SET BAT AS MANPAGER
|
### SET BAT AS MANPAGER
|
||||||
set -x MANPAGER "sh -c 'col -bx | bat -l man -p'"
|
#set -x MANPAGER "sh -c 'col -bx | bat -l man -p'"
|
||||||
|
|
||||||
### SET EITHER DEFAULT EMACS MODE OR VI MODE ###
|
### SET EITHER DEFAULT EMACS MODE OR VI MODE ###
|
||||||
function fish_user_key_bindings
|
function fish_user_key_bindings
|
||||||
|
|
141
user/.config/wget/wgetrc
Normal file
141
user/.config/wget/wgetrc
Normal file
|
@ -0,0 +1,141 @@
|
||||||
|
###
|
||||||
|
### Sample Wget initialization file .wgetrc
|
||||||
|
###
|
||||||
|
|
||||||
|
## You can use this file to change the default behaviour of wget or to
|
||||||
|
## avoid having to type many many command-line options. This file does
|
||||||
|
## not contain a comprehensive list of commands -- look at the manual
|
||||||
|
## to find out what you can put into this file. You can find this here:
|
||||||
|
## $ info wget.info 'Startup File'
|
||||||
|
## Or online here:
|
||||||
|
## https://www.gnu.org/software/wget/manual/wget.html#Startup-File
|
||||||
|
##
|
||||||
|
## Wget initialization file can reside in /usr/local/etc/wgetrc
|
||||||
|
## (global, for all users) or $HOME/.wgetrc (for a single user).
|
||||||
|
##
|
||||||
|
## To use the settings in this file, you will have to uncomment them,
|
||||||
|
## as well as change them, in most cases, as the values on the
|
||||||
|
## commented-out lines are the default values (e.g. "off").
|
||||||
|
##
|
||||||
|
## Command are case-, underscore- and minus-insensitive.
|
||||||
|
## For example ftp_proxy, ftp-proxy and ftpproxy are the same.
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## Global settings (useful for setting up in /usr/local/etc/wgetrc).
|
||||||
|
## Think well before you change them, since they may reduce wget's
|
||||||
|
## functionality, and make it behave contrary to the documentation:
|
||||||
|
##
|
||||||
|
|
||||||
|
# You can set retrieve quota for beginners by specifying a value
|
||||||
|
# optionally followed by 'K' (kilobytes) or 'M' (megabytes). The
|
||||||
|
# default quota is unlimited.
|
||||||
|
#quota = inf
|
||||||
|
|
||||||
|
# You can lower (or raise) the default number of retries when
|
||||||
|
# downloading a file (default is 20).
|
||||||
|
#tries = 20
|
||||||
|
|
||||||
|
# Lowering the maximum depth of the recursive retrieval is handy to
|
||||||
|
# prevent newbies from going too "deep" when they unwittingly start
|
||||||
|
# the recursive retrieval. The default is 5.
|
||||||
|
#reclevel = 5
|
||||||
|
|
||||||
|
# By default Wget uses "passive FTP" transfer where the client
|
||||||
|
# initiates the data connection to the server rather than the other
|
||||||
|
# way around. That is required on systems behind NAT where the client
|
||||||
|
# computer cannot be easily reached from the Internet. However, some
|
||||||
|
# firewalls software explicitly supports active FTP and in fact has
|
||||||
|
# problems supporting passive transfer. If you are in such
|
||||||
|
# environment, use "passive_ftp = off" to revert to active FTP.
|
||||||
|
#passive_ftp = off
|
||||||
|
|
||||||
|
# The "wait" command below makes Wget wait between every connection.
|
||||||
|
# If, instead, you want Wget to wait only between retries of failed
|
||||||
|
# downloads, set waitretry to maximum number of seconds to wait (Wget
|
||||||
|
# will use "linear backoff", waiting 1 second after the first failure
|
||||||
|
# on a file, 2 seconds after the second failure, etc. up to this max).
|
||||||
|
#waitretry = 10
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## Local settings (for a user to set in his $HOME/.wgetrc). It is
|
||||||
|
## *highly* undesirable to put these settings in the global file, since
|
||||||
|
## they are potentially dangerous to "normal" users.
|
||||||
|
##
|
||||||
|
## Even when setting up your own ~/.wgetrc, you should know what you
|
||||||
|
## are doing before doing so.
|
||||||
|
##
|
||||||
|
|
||||||
|
# Set this to on to use timestamping by default:
|
||||||
|
#timestamping = off
|
||||||
|
|
||||||
|
# It is a good idea to make Wget send your email address in a `From:'
|
||||||
|
# header with your request (so that server administrators can contact
|
||||||
|
# you in case of errors). Wget does *not* send `From:' by default.
|
||||||
|
#header = From: Your Name <username@site.domain>
|
||||||
|
|
||||||
|
# You can set up other headers, like Accept-Language. Accept-Language
|
||||||
|
# is *not* sent by default.
|
||||||
|
#header = Accept-Language: en
|
||||||
|
|
||||||
|
# You can set the default proxies for Wget to use for http, https, and ftp.
|
||||||
|
# They will override the value in the environment.
|
||||||
|
#https_proxy = http://proxy.yoyodyne.com:18023/
|
||||||
|
#http_proxy = http://proxy.yoyodyne.com:18023/
|
||||||
|
#ftp_proxy = http://proxy.yoyodyne.com:18023/
|
||||||
|
|
||||||
|
# If you do not want to use proxy at all, set this to off.
|
||||||
|
#use_proxy = on
|
||||||
|
|
||||||
|
# You can customize the retrieval outlook. Valid options are default,
|
||||||
|
# binary, mega and micro.
|
||||||
|
#dot_style = default
|
||||||
|
|
||||||
|
# Setting this to off makes Wget not download /robots.txt. Be sure to
|
||||||
|
# know *exactly* what /robots.txt is and how it is used before changing
|
||||||
|
# the default!
|
||||||
|
#robots = on
|
||||||
|
|
||||||
|
# It can be useful to make Wget wait between connections. Set this to
|
||||||
|
# the number of seconds you want Wget to wait.
|
||||||
|
#wait = 0
|
||||||
|
|
||||||
|
# You can force creating directory structure, even if a single is being
|
||||||
|
# retrieved, by setting this to on.
|
||||||
|
#dirstruct = off
|
||||||
|
|
||||||
|
# You can turn on recursive retrieving by default (don't do this if
|
||||||
|
# you are not sure you know what it means) by setting this to on.
|
||||||
|
#recursive = off
|
||||||
|
|
||||||
|
# To always back up file X as X.orig before converting its links (due
|
||||||
|
# to -k / --convert-links / convert_links = on having been specified),
|
||||||
|
# set this variable to on:
|
||||||
|
#backup_converted = off
|
||||||
|
|
||||||
|
# To have Wget follow FTP links from HTML files by default, set this
|
||||||
|
# to on:
|
||||||
|
#follow_ftp = off
|
||||||
|
|
||||||
|
# To try ipv6 addresses first:
|
||||||
|
#prefer-family = IPv6
|
||||||
|
|
||||||
|
# Set default IRI support state
|
||||||
|
#iri = off
|
||||||
|
|
||||||
|
# Force the default system encoding
|
||||||
|
#localencoding = UTF-8
|
||||||
|
|
||||||
|
# Force the default remote server encoding
|
||||||
|
#remoteencoding = UTF-8
|
||||||
|
|
||||||
|
# Turn on to prevent following non-HTTPS links when in recursive mode
|
||||||
|
httpsonly = on
|
||||||
|
|
||||||
|
# Tune HTTPS security (auto, SSLv2, SSLv3, TLSv1, PFS)
|
||||||
|
#secureprotocol = auto
|
||||||
|
ca_certificate=/etc/ssl/certs/ca-certificates.crt
|
||||||
|
|
||||||
|
# Custom HSTS caching file path
|
||||||
|
hsts-file=~/.config/wget/wget-hsts
|
Loading…
Reference in a new issue