Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. /* Terminal colors (16 first used in escape sequence) */
  2. static const char *colorname[] = {
  3. [0] = "#101010", /* black */
  4. [1] = "#e84f4f", /* red */
  5. [2] = "#b8d68c", /* green */
  6. [3] = "#e1aa5d", /* yellow */
  7. [4] = "#7dc1cf", /* blue */
  8. [5] = "#9b64fb", /* magenta */
  9. [6] = "#6d878d", /* cyan */
  10. [7] = "#dddddd", /* white */
  11.  
  12. /* 8 bright colors */
  13. [8] = "#404040", /* black */
  14. [9] = "#d23d3d", /* red */
  15. [10] = "#a0cf5d", /* green */
  16. [11] = "#f39d21", /* yellow */
  17. [12] = "#4e9fb1", /* blue */
  18. [13] = "#8542ff", /* magenta */
  19. [14] = "#42717b", /* cyan */
  20. [15] = "#dddddd", /* white */
  21.  
  22. /* special colors */
  23. [256] = "#151515", /* background */
  24. [257] = "#d7d0c7", /* foreground */
  25. };
  26. /*
  27. * foreground, background, cursor, reverse cursor
  28. */
  29. static unsigned int defaultrcs = 257;
  30. unsigned int defaultfg = 257;
  31. unsigned int defaultbg = 256;
  32. static unsigned int defaultcs = 257;
  33.  
  34. /*
  35. * Default shape of cursor
  36. * 2: Block ("█")
  37. * 4: Underline ("_")
  38. * 6: Bar ("|")
  39. * 7: Snowman ("☃")
  40. */
  41. static unsigned int cursorshape = 6;
  42.  
  43. Section "Monitor"
  44. Identifier "eDP1"
  45. Option "Primary" "true"
  46. EndSection
  47.  
  48. Section "Monitor"
  49. Identifier "DP2"
  50. Option "PreferredMode" "1440x900"
  51. Option "LeftOf" "eDP1"
  52. EndSection
  53.  
  54. Section "Monitor"
  55. Identifier "HDMI1"
  56. Option "LeftOf" "DP2"
  57. EndSection
  58.  
  59. Section "InputClass"
  60. Identifier "system-keyboard"
  61. MatchIsKeyboard "on"
  62. Option "XkbLayout" "fr"
  63. Option "XkbModel" "pc105"
  64. Option "XkbOptions" "terminate:ctrl_alt_bksp"
  65. EndSection
  66.  
  67.  
  68.  
  69. if [ -n "$failsafe" ]; then
  70. (conky | while read LINE; do xsetroot -name "$LINE"; done) &
  71. feh --bg-scale 959015-large-full-hd-desktop-wallpaper-1920x1080-1920x1080.jpg
  72. exec dwm
  73. else
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement