summaryrefslogtreecommitdiff
path: root/x
diff options
context:
space:
mode:
authorShubham Saini <shubham6405@gmail.com>2020-02-23 12:50:14 +0000
committerShubham Saini <shubham6405@gmail.com>2020-02-23 12:50:14 +0000
commit4186d162bd2cc3b9b45851c12462f1acba090852 (patch)
tree0af2951ccd9b252df8c2f9eb9115552fe010278d /x
parentbe33df44d5893ac9576d937c30176e8840a8035e (diff)
gentoo:time wasted
Diffstat (limited to 'x')
-rw-r--r--x/.Xresources18
-rw-r--r--x/.xinitrc23
2 files changed, 30 insertions, 11 deletions
diff --git a/x/.Xresources b/x/.Xresources
index 63035d7..d58b278 100644
--- a/x/.Xresources
+++ b/x/.Xresources
@@ -57,14 +57,14 @@ URxvt*inheritPixmap: False
57*color15: #e0dede 57*color15: #e0dede
58 58
59! Perls 59! Perls
60!URxvt.perl-ext-common : default,matcher,keyboard-select,url-select 60URxvt.perl-ext-common : default,matcher,keyboard-select,url-select
61!URxvt.resize-font.step: 1 61URxvt.resize-font.step: 1
62!URxvt.keysym.M-Escape : perl:keyboard-select:activate 62URxvt.keysym.M-Escape : perl:keyboard-select:activate
63!URxvt.keysym.M-u : perl:url-select:select_next 63URxvt.keysym.M-u : perl:url-select:select_next
64!URxvt.keysym.M-s : perl:keyboard-select:search 64URxvt.keysym.M-s : perl:keyboard-select:search
65!URxvt.perl-ext-common : tabbed,default,matcher 65!URxvt.perl-ext-common : tabbed,default,matcher
66!Urxvt.perl-lib : /usr/lib/urxvt/perl/ 66!Urxvt.perl-lib : /usr/lib/urxvt/perl/
67!URxvt.url-select.launcher : firefox 67URxvt.url-select.launcher : firefox
68!URxvt.url-select.autocopy : true 68URxvt.url-select.autocopy : true
69!URxvt.url-select.underline : true 69URxvt.url-select.underline : true
70!URxvt.url-select.button: 1 70URxvt.url-select.button: 1
diff --git a/x/.xinitrc b/x/.xinitrc
index 79d2232..8626b1b 100644
--- a/x/.xinitrc
+++ b/x/.xinitrc
@@ -40,6 +40,25 @@ if [ -n "$DISPLAY" ]; then
40 xset b off 40 xset b off
41fi 41fi
42 42
43xsetroot -cursor_name left_ptr 43# load additional configs
44xset +fp /usr/share/fonts/liberation-fonts 44if [ "$2" = "nvidia" ]; then
45 XINIT_D="/etc/X11/nvidia/xinit/xinitrc.d"
46else
47 XINIT_D="/etc/X11/xinit/xinitrc.d"
48fi
49
50if [ -d "$XINIT_D" ]; then
51 for f in "$XINIT_D/?*.sh" ; do
52 [ -x "$f" ] && . "$f"
53 done
54 unset f
55fi
56unset XINIT_D
57
58# additional nvidia specific settings
59if [ "$2" = "nvidia" ]; then
60 xrandr --setprovideroutputsource modesetting NVIDIA-0
61 xrandr --auto
62fi
63
45exec bspwm 64exec bspwm