mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-02-18 06:31:01 +01:00
bashrc & zshrc: if /usr/bin/xset exists, xset -b on
To enable beeping...
This commit is contained in:
parent
21a2829f2f
commit
10d377f7cf
7
bashrc
7
bashrc
@ -10,6 +10,13 @@ echo "if [ -f ~/.bashrc ]; then
|
|||||||
source ~/.bashrc
|
source ~/.bashrc
|
||||||
fi" > ~/.bash_profile
|
fi" > ~/.bash_profile
|
||||||
|
|
||||||
|
# enable terminal bell
|
||||||
|
|
||||||
|
if [ -f /usr/bin/xset ];
|
||||||
|
then
|
||||||
|
xset b on
|
||||||
|
fi
|
||||||
|
|
||||||
##### Defaults etc... M0TZLS #####
|
##### Defaults etc... M0TZLS #####
|
||||||
|
|
||||||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||||
|
7
zshrc
7
zshrc
@ -8,6 +8,13 @@ UNAME=`uname`
|
|||||||
# uname should be readable in $uname
|
# uname should be readable in $uname
|
||||||
uname=`uname`
|
uname=`uname`
|
||||||
|
|
||||||
|
# enable terminal bell
|
||||||
|
|
||||||
|
if [ -f /usr/bin/xset ];
|
||||||
|
then
|
||||||
|
xset b on
|
||||||
|
fi
|
||||||
|
|
||||||
##### Defaults etc... M0TZLS #####
|
##### Defaults etc... M0TZLS #####
|
||||||
|
|
||||||
# This is based on zshrc which came with Debian (Third option in wizard for new users.)
|
# This is based on zshrc which came with Debian (Third option in wizard for new users.)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user