Rename .bash_* files to more generic files, and remove unused bash_*
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env sh
|
||||
#
|
||||
# ~/.bash_aliases
|
||||
# this file is sourced in ~/.bashrc and defines aliases used by the shell.
|
||||
# This file should be sourced in *rc files, such as .bashrc.
|
||||
# It's purpose is to provide aliases for various commands.
|
||||
#
|
||||
|
||||
# replace some default tools with different ones
|
||||
@@ -1,5 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# ~/.bash_logout
|
||||
# sourced when an interactive login shell exits, or a non-interactive login shell executes `exit`
|
||||
#
|
||||
2
.bashrc
2
.bashrc
@@ -75,7 +75,7 @@ HISTIGNORE='exit*:clear*:\:*:echo*'
|
||||
shopt -s checkwinsize # check the window size after each command (and if necessary, the values of LINES and COLUMNS)
|
||||
shopt -s globstar # enable globstar (**/*)
|
||||
|
||||
[ -f "$HOME/.bash_aliases" ] && . "$HOME/.bash_aliases"
|
||||
[ -f "$HOME/.aliases" ] && . "$HOME/.aliases"
|
||||
|
||||
# cute lil hyfetch :3
|
||||
[ "$TERM" == "xterm-kitty" ] && fastfetch
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
#!/bin/sh
|
||||
# shellcheck disable=1091
|
||||
#!/usr/bin/env sh
|
||||
#
|
||||
# ~/.bash_profile
|
||||
# sourced upon new login shells
|
||||
# ~/.profile
|
||||
# Sourced once per login by most shells.
|
||||
# Some shells, such as csh may use a symlink from ~/.login instead.
|
||||
# Used to set important variables, such as PATH, XDG_ and alike.
|
||||
#
|
||||
|
||||
# https://specifications.freedesktop.org/basedir-spec/latest/
|
||||
Reference in New Issue
Block a user