-
Notifications
You must be signed in to change notification settings - Fork 0
/
.xinitrc
45 lines (33 loc) · 1.04 KB
/
.xinitrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
# merge Xresources
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
# disable screensaver and blank screen
# xset -dpms; xset s off
# @TODO instead of this, call aka-update-screens 3
# Monitor
xrandr --output DVI-D-0 --primary
xrandr --output DVI-D-0 --mode 2560x1440 --rate 75
xrandr --output HDMI-0 --mode 2560x1440 --rate 75
xrandr --output HDMI-0 --right-of DVI-D-0
xrandr --output DP-1 --mode 1920x1080 --rate 60
xrandr --output DP-1 --right-of HDMI-0
# Keyboard
setxkbmap -layout "us,ge"
setxkbmap -option "grp:caps_toggle"
# TODO ru-s rame calke mapperi
# https://faq.i3wm.org/question/2569/set-mod-key-only-as-left-mod-key.1.html
# 1. cpslck shd toggle between us,ge and alt+cpslck between us,ru
# 2. disable/remap win_r
# @NOTE replaced it with systemd-numlockontty
# Activate num lock on boot
#numlockx &
# Set mouse cursor and background colour
xsetroot -cursor_name left_ptr -solid '#CCCC00' &
# @TODO reactivate back
# Wallpaper
#~/bin/fehbg &
# Start compositioning
picom -b
# Start Desktop
#exec i3
exec qtile start