diff options
Diffstat (limited to 'X11')
-rw-r--r-- | X11/Xresources | 15 | ||||
-rwxr-xr-x | X11/xinit | 12 |
2 files changed, 19 insertions, 8 deletions
diff --git a/X11/Xresources b/X11/Xresources index da301ce..745ed66 100644 --- a/X11/Xresources +++ b/X11/Xresources @@ -2,9 +2,12 @@ Xcursor.theme: SpaceKCursors +! *.font: "Monospace 12" +*.font: "Inconsolata:pixelsize=17:antialias=true:autohint=true" + ! special -*.foreground: #d9d6e3 -*.background: #0f0a1c +*.foreground: #d9d5e6 +*.background: #0a001f *.cursorColor: #d9d5e6 @@ -13,8 +16,8 @@ Xcursor.theme: SpaceKCursors *.color8: #828ff9 ! red -*.color1: #655395 -*.color9: #655395 +*.color1: #7f64ba +*.color9: #7f64ba ! green *.color2: #828ff9 @@ -33,8 +36,8 @@ Xcursor.theme: SpaceKCursors *.color13: #ace6f0 ! cyan -*.color6: #655395 -*.color14: #655395 +*.color6: #7f64ba +*.color14: #7f64ba ! white *.color7: #eebea4 @@ -4,8 +4,9 @@ # ## ~/.xinitrc ## # # # -xrandr --output HDMI-0 --mode 1920x1080 -r 240 -xrandr --output HDMI-1-0 --mode 1920x1080 -r 240 +#xrandr --output HDMI-0 --mode 3840x2160 --auto -r 60 & # 120 +xrandr --output HDMI-0 --mode 1920x1080 -r 240 & +xrandr --output HDMI-1-0 --mode 1920x1080 -r 240 & xrandr -s 1920x1080 -r 144 & # target screen resolution xset r rate 300 30 & # key repeat delay and speed @@ -19,6 +20,8 @@ picom & # compositor feh --bg-fill --no-fehbg ~/.config/backgrounds/darkflowers.jpg & # wallpaper +libinput-gestures-setup start & # Prevent accidental touch + synclient ClickPad=1 # buttonless pad synclient VertTwoFingerScroll=1 # enable vert scroll @@ -46,6 +49,11 @@ amixer --card 0 set 'Capture' 39 & # captur sxhkd -c $HOME/.config/keybinds & # keybindings +xautolock -time 10 -locker lock & # xautolock screen in x minutes +# lock is a custom script that locks the screen (~/.config/lock) + +syncthing serve --no-browser &>/dev/null & # start syncthing server + eval $(dbus-launch --sh-syntax --exit-with-x11) # dbus session dbus-run-session pipewire & # audio server |