aboutsummaryrefslogtreecommitdiff
path: root/.config/X11
diff options
context:
space:
mode:
Diffstat (limited to '.config/X11')
-rw-r--r--.config/X11/Xresources45
-rw-r--r--.config/X11/xbindkeysrc4
-rwxr-xr-x.config/X11/xinitrc16
3 files changed, 41 insertions, 24 deletions
diff --git a/.config/X11/Xresources b/.config/X11/Xresources
index b0d9a07..d551748 100644
--- a/.config/X11/Xresources
+++ b/.config/X11/Xresources
@@ -2,29 +2,48 @@
! URxvt Settings
! -----------------
-URxvt.perl-ext-common: default,matcher,font-size,vtwheel,url-select,keyboard-select
-URxvt.url-launcher: /usr/bin/env xdg-open
-URxvt.url-select.launcher: /usr/bin/env xdg-open
-URxvt.keysym.M-Escape: perl:keyboard-select:activate
-URxvt.matcher.button: 1
-URxvt.internalBorder: 10
-URxvt.geometry: 80x18
-URxvt.cursorUnderline: 0
URxvt.cursorBlink: 1
+URxvt.cursorUnderline: 0
+URxvt.geometry: 80x18
+URxvt.internalBorder: 10
URxvt.keysym.C-0: perl:font-size:reset
-URxvt.keysym.C-Up: perl:font-size:increase
URxvt.keysym.C-Down: perl:font-size:decrease
+URxvt.keysym.C-Up: perl:font-size:increase
+URxvt.keysym.M-Escape: perl:keyboard-select:activate
+URxvt.matcher.button: 1
+URxvt.perl-ext-common: default,matcher,font-size,vtwheel,url-select,keyboard-select,-confirm-paste
URxvt.scrollBar: false
+URxvt.scrollTtyKeypress: true
URxvt.scrollTtyOutput: false
URxvt.scrollWithBuffer: true
-URxvt.scrollTtyKeypress: true
-URxvt.transparent: false
URxvt.shading: 20
+URxvt.transparent: false
+URxvt.url-launcher: /usr/bin/env xdg-open
+URxvt.url-select.launcher: /usr/bin/env xdg-open
-URxvt.font: xft:monospace:size=10,xft:DejaVuSansMono Nerd Font Mono:size=10
URxvt.boldFont: xft:monospace:size=10,xft:DejaVuSansMono Nerd Font Mono:size=10
-URxvt.italicFont: xft:monospace:size=10,xft:DejaVuSansMono Nerd Font Mono:size=10
URxvt.boldItalicFont: xft:monospace:size=10,xft:DejaVuSansMono Nerd Font Mono:size=10
+URxvt.font: xft:monospace:size=10,xft:DejaVuSansMono Nerd Font Mono:size=10
+URxvt.italicFont: xft:monospace:size=10,xft:DejaVuSansMono Nerd Font Mono:size=10
+
+! -----------------
+! UXTerm Settings
+! -----------------
+
+UXTerm.termName: xterm-256color
+UXTerm.ttyModes: erase ^?
+UXTerm.vt100.backarrowKey: false
+UXTerm.vt100.cursorBlink: true
+UXTerm.vt100.faceName: xft:monospace:size=10,xft:DejaVuSansMono Nerd Font Mono:size=10
+UXTerm.vt100.fastScroll: true
+UXTerm.vt100.geometry: 80x18
+UXTerm.vt100.internalBorder: 10
+UXTerm.vt100.jumpScroll: true
+UXTerm.vt100.locale: false
+UXTerm.vt100.metaSendsEscape: true
+UXTerm.vt100.multiScroll: true
+UXTerm.vt100.saveLines: 4096
+UXTerm.vt100.utf8: true
! -----------------
! Terminal Colors
diff --git a/.config/X11/xbindkeysrc b/.config/X11/xbindkeysrc
index dac6e85..a8605fe 100644
--- a/.config/X11/xbindkeysrc
+++ b/.config/X11/xbindkeysrc
@@ -22,10 +22,6 @@
"wmctrl -c :ACTIVE:"
Mod4 + Shift + c
-# toggle fullscreen active window
-"wmctrl -r :ACTIVE: -b toggle,fullscreen"
- Mod4 + f
-
# toggle ontop active window
"wmctrl -r :ACTIVE: -b toggle,above"
Mod4 + t
diff --git a/.config/X11/xinitrc b/.config/X11/xinitrc
index 18e09b9..116c9da 100755
--- a/.config/X11/xinitrc
+++ b/.config/X11/xinitrc
@@ -5,21 +5,23 @@ Xresources=$HOME/.config/X11/Xresources
Xauthority=$HOME/.config/X11/Xauthority
# merge in defaults and keymaps
-[ -f "$Xmodmap" ] && xmodmap "$Xmodmap";
-[ -f "$Xresources" ] && xrdb -merge "$Xresources";
+[ -f "$Xmodmap" ] && xmodmap "$Xmodmap"
+[ -f "$Xresources" ] && xrdb -merge "$Xresources"
# screen timeouts
xset s 0 0 &
xset dpms 3600 3600 3600 &
# set cursor
-xsetroot -cursor_name left_ptr;
+xsetroot -cursor_name left_ptr
# set keypress repeat
-xset r rate 200 60;
+xset r rate 200 60
# import systemctl environment
-systemctl --user import-environment;
+systemctl --user import-environment
-# run desktop
-dbus-launch xfce4-session || exec awesome --no-argb;
+# launch environment
+dbus-launch xfce4-session \
+ || dbus-broker-launch xfce4-session \
+ || exec awesome --no-argb