Add some packages, add scripts for enable/disabling laptop keyboard
This commit is contained in:
parent
20efeff7c9
commit
029168da76
5 changed files with 11 additions and 3 deletions
|
@ -16,7 +16,7 @@ export BAR_ICON_FONT_DECLARATION="${BAR_ICON_FONT}:size=${BAR_ICON_FONT_SIZE};1"
|
||||||
|
|
||||||
export GAP=$(bspc wm -d | grep -Po '(windowGap.*?,)' | grep -Po '\d*' | head -n 1)
|
export GAP=$(bspc wm -d | grep -Po '(windowGap.*?,)' | grep -Po '\d*' | head -n 1)
|
||||||
|
|
||||||
export BAR_BOTTOM="true"
|
export BAR_BOTTOM="false"
|
||||||
export POS_Y=0
|
export POS_Y=0
|
||||||
|
|
||||||
# allow a per-device config to override options
|
# allow a per-device config to override options
|
||||||
|
|
|
@ -16,8 +16,10 @@ URxvt.internalBorder: 24
|
||||||
|
|
||||||
Xcursor.theme: human
|
Xcursor.theme: human
|
||||||
|
|
||||||
URxvt.perl-ext-common: default,matcher,keyboard-select
|
URxvt.perl-ext-common: default,matcher,keyboard-select,resize-font
|
||||||
URxvt.keysym.M-Escape: perl:keyboard-select:activate
|
URxvt.keysym.M-Escape: perl:keyboard-select:activate
|
||||||
|
URxvt.resize-font.smaller: C-Down
|
||||||
|
URxvt.resize-font.bigger: C-Up
|
||||||
URxvt.url-launcher: /usr/bin/xdg-open
|
URxvt.url-launcher: /usr/bin/xdg-open
|
||||||
URxvt.matcher.button: 1
|
URxvt.matcher.button: 1
|
||||||
URxvt*iso14755: False
|
URxvt*iso14755: False
|
||||||
|
|
|
@ -21,7 +21,7 @@ pacaur -S \
|
||||||
polybar-git \
|
polybar-git \
|
||||||
php \
|
php \
|
||||||
nginx \
|
nginx \
|
||||||
urxvt-perls-git \
|
urxvt-perls-git urxvt-resize-font-git \
|
||||||
samba \
|
samba \
|
||||||
ttf-noto-fonts-simple ttf-noto-fonts-ib ttf-noto-fonts-emoji-ib \
|
ttf-noto-fonts-simple ttf-noto-fonts-ib ttf-noto-fonts-emoji-ib \
|
||||||
siji-git gohufont artwiz-fonts phallus-fonts-git \
|
siji-git gohufont artwiz-fonts phallus-fonts-git \
|
||||||
|
|
3
scripts/bin/disable-laptop-keyboard
Executable file
3
scripts/bin/disable-laptop-keyboard
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
sudo xinput float 15
|
3
scripts/bin/enable-laptop-keyboard
Executable file
3
scripts/bin/enable-laptop-keyboard
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
sudo xinput reattach 15 3
|
Reference in a new issue