diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-12-24 19:21:39 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-12-24 19:21:39 +0530 |
| commit | 96a1dfbd6af9298a6f542170e8f00e5fc461e733 (patch) | |
| tree | cbec74beeb4656ff43f59e2e52f2cf490ccf4821 /config/xorg | |
| parent | a12863b51ed016a0f7e691b1ef05dd14b1512ed5 (diff) | |
| download | nixos-config-96a1dfbd6af9298a6f542170e8f00e5fc461e733.tar.gz nixos-config-96a1dfbd6af9298a6f542170e8f00e5fc461e733.zip | |
Migrates xresources to home manager + removes 'external'
Diffstat (limited to '')
| -rw-r--r-- | config/xorg/Xmodmap | 2 | ||||
| -rwxr-xr-x | config/xorg/init.sh (renamed from external/xconfig/init.sh) | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/config/xorg/Xmodmap b/config/xorg/Xmodmap new file mode 100644 index 0000000..5f02818 --- /dev/null +++ b/config/xorg/Xmodmap @@ -0,0 +1,2 @@ +clear Lock +keycode 66 = Escape NoSymbol Escape diff --git a/external/xconfig/init.sh b/config/xorg/init.sh index d51f6df..b1f6cb7 100755 --- a/external/xconfig/init.sh +++ b/config/xorg/init.sh @@ -1,12 +1,10 @@ #!/usr/bin/env sh -NIX_X="$HOME/nixos/external/xconfig"; - # Xresources (theme) -xrdb -merge $NIX_X/Xresources; +xrdb -merge ~/.Xresources; # Xmodmap (keymapping) -xmodmap $NIX_X/Xmodmap; +xmodmap ~/.config/xorg/Xmodmap; # No screen saver xset s off; @@ -17,10 +15,10 @@ xset s noblank; xset r rate 350 30; # Display settings -# ~/scripts/commands/:day +~/scripts/commands/:day # Sound #~/scripts/sound.sh mic-vol full; -#~/scripts/sound.sh mute-mic; -#~/scripts/sound.sh mute; +~/scripts/sound.sh mute-mic; +~/scripts/sound.sh mute; |
