initial commit
This commit is contained in:
18
.config/sx/sxrc
Executable file
18
.config/sx/sxrc
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
# configure monitors
|
||||
xrandr --output DisplayPort-1 --mode 1920x1080 --rate 144 --primary --left-of HDMI-A-0 --output HDMI-A-0 --mode 1920x1080 --rate 60
|
||||
# increase key repeat rate
|
||||
xset r rate 300 50
|
||||
# set the wallpaper
|
||||
xwallpaper --zoom ~/.local/share/bg.jpg
|
||||
# load xresources
|
||||
xrdb ~/.config/sx/xresources &
|
||||
xrdbpid=$!
|
||||
|
||||
export _JAVA_AWT_WM_NONREPARENTING=1 # Fix for Java applications in dwm
|
||||
|
||||
# Ensure that xrdb has finished running before moving on to start the WM/DE.
|
||||
[ -n "$xrdbpid" ] && wait "$xrdbpid"
|
||||
|
||||
dbus-launch --exit-with-session dwm
|
||||
35
.config/sx/xresources
Normal file
35
.config/sx/xresources
Normal file
@@ -0,0 +1,35 @@
|
||||
!! Transparency (0-1)
|
||||
*.alpha: 0.7
|
||||
|
||||
/* name dark light */
|
||||
/* black 0 8 */
|
||||
/* red 1 9 */
|
||||
/* green 2 10 */
|
||||
/* yellow 3 11 */
|
||||
/* blue 4 12 */
|
||||
/* purple 5 13 */
|
||||
/* cyan 6 14 */
|
||||
/* white 7 15 */
|
||||
|
||||
*.foreground: #c8ccd4
|
||||
*.background: #1e222a
|
||||
*.cursorColor: #c8ccd4
|
||||
*.color0: #1e222a
|
||||
*.color1: #e06c75
|
||||
*.color2: #98c379
|
||||
*.color3: #e5c07b
|
||||
*.color4: #61afef
|
||||
*.color5: #c678dd
|
||||
*.color6: #56b6c2
|
||||
*.color7: #abb2bf
|
||||
*.color8: #545862
|
||||
*.color9: #e06c75
|
||||
*.color10: #98c379
|
||||
*.color11: #e5c07b
|
||||
*.color12: #61afef
|
||||
*.color13: #c678dd
|
||||
*.color14: #56b6c2
|
||||
*.color15: #c8ccd4
|
||||
|
||||
*.font: mono:size=14
|
||||
*.blinktimeout: 600
|
||||
Reference in New Issue
Block a user