aboutsummaryrefslogtreecommitdiffstats
path: root/xorg
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2017-03-27 13:49:19 +0200
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2017-03-27 13:49:19 +0200
commit1647c39913965f7d90c6384c906971ff180c91b8 (patch)
tree9c81e236c0129956d8e3886877a7557b29279e74 /xorg
parenta4ce31d3ecd6285878a9d226ef81c1c0db2ce39a (diff)
downloaddotfiles-1647c39913965f7d90c6384c906971ff180c91b8.tar.gz
dotfiles-1647c39913965f7d90c6384c906971ff180c91b8.tar.bz2
dotfiles-1647c39913965f7d90c6384c906971ff180c91b8.zip
Updated bashrc and vimrc
Diffstat (limited to 'xorg')
-rw-r--r--xorg/.Xresources9
-rwxr-xr-xxorg/.local/usr/bin/xbacklightmon4
2 files changed, 7 insertions, 6 deletions
diff --git a/xorg/.Xresources b/xorg/.Xresources
index efa1cb3..414cb64 100644
--- a/xorg/.Xresources
+++ b/xorg/.Xresources
@@ -12,7 +12,7 @@
12*color0: #2d2d2d 12*color0: #2d2d2d
13*color8: #333333 13*color8: #333333
14 14
15! Reds 15! Reds
16*color1: #690a03 16*color1: #690a03
17*color9: #d64937 17*color9: #d64937
18 18
@@ -40,7 +40,8 @@
40*color7: #d9d9d9 40*color7: #d9d9d9
41*color15: #f9f9f9 41*color15: #f9f9f9
42 42
43XTerm*termName: xterm-256color
44XTerm*selectToClipboard: true
45XTerm*metaSendsEscape: true
46XTerm*background: #2F343F 43XTerm*background: #2F343F
44XTerm*metaSendsEscape: true
45XTerm*scrollBar: false
46XTerm*selectToClipboard: true
47XTerm*termName: xterm-256color
diff --git a/xorg/.local/usr/bin/xbacklightmon b/xorg/.local/usr/bin/xbacklightmon
index 39f6b48..f5b46c0 100755
--- a/xorg/.local/usr/bin/xbacklightmon
+++ b/xorg/.local/usr/bin/xbacklightmon
@@ -10,8 +10,8 @@ luminance() {
10 10
11read -r max < "$path"/max_brightness 11read -r max < "$path"/max_brightness
12 12
13xbacklight -set "$(luminance)" 13echo xbacklight -set "$(luminance)"
14 14
15inotifywait -me modify --format '' "$path"/actual_brightness | while read; do 15inotifywait -me modify --format '' "$path"/actual_brightness | while read; do
16 xbacklight -set "$(luminance)" 16 echo xbacklight -set "$(luminance)"
17done 17done