diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-12-20 20:56:53 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-12-20 20:56:53 +0530 |
| commit | 6f32887a0ea07ea8d5a792c525ff66284cfac5e6 (patch) | |
| tree | daae583af282fc2421bdb16f6288bc763fc0f2a6 /external/xconfig/init.sh | |
| parent | 4e5ca7125a9709dc39709743e06522ec39656ebc (diff) | |
| download | nixos-config-6f32887a0ea07ea8d5a792c525ff66284cfac5e6.tar.gz nixos-config-6f32887a0ea07ea8d5a792c525ff66284cfac5e6.zip | |
Fixes autostart and x init stuff
Diffstat (limited to '')
| -rwxr-xr-x | external/xconfig/init.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/external/xconfig/init.sh b/external/xconfig/init.sh new file mode 100755 index 0000000..d51f6df --- /dev/null +++ b/external/xconfig/init.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env sh + +NIX_X="$HOME/nixos/external/xconfig"; + +# Xresources (theme) +xrdb -merge $NIX_X/Xresources; + +# Xmodmap (keymapping) +xmodmap $NIX_X/Xmodmap; + +# No screen saver +xset s off; +xset -dpms; +xset s noblank; + +# Typing rate +xset r rate 350 30; + +# Display settings +# ~/scripts/commands/:day + +# Sound +#~/scripts/sound.sh mic-vol full; +#~/scripts/sound.sh mute-mic; +#~/scripts/sound.sh mute; + |
