You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
281 B
Bash
16 lines
281 B
Bash
4 years ago
|
#
|
||
|
# ~/.bashrc
|
||
|
#
|
||
|
|
||
|
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
|
||
|
startx
|
||
|
fi
|
||
|
|
||
|
if [[ ! -f /etc/pacman.d/mirrorlist ]]; then
|
||
|
sudo reflector --verbose --latest 5 --sort rate --save /etc/pacman.d/mirrorlist
|
||
|
fi
|
||
|
|
||
|
# this shit makes tkinter work
|
||
|
xrdb -load /dev/null
|
||
|
xrdb -query
|