Initial backup

This commit is contained in:
2020-04-27 15:28:35 +02:00
parent 9b8c235753
commit be88ded986
34 changed files with 2161 additions and 0 deletions

34
.xmonad/xmonad-session-rc Executable file
View File

@@ -0,0 +1,34 @@
#!/bin/sh
# Script to configure X, start common apps, and start xmonad.
# Author: Vic Fryzel
# http://github.com/vicfryzel/xmonad-config
# Configure PATH so that we can access our scripts below
PATH=$PATH:~/.cabal/bin:~/.xmonad/bin
# Configure X
xsetroot -cursor_name left_ptr &
xrdb -merge ~/.Xdefaults &
setxkbmap -option "ctrl:nocaps" &
# Start a window compositor. This ensures Google Chrome paints correctly.
xcompmgr -n &
# Start the system tray
tray &
# Start two terminals
gnome-terminal &
gnome-terminal &
# Start a browser
google-chrome &
# Start screensaver
gnome-screensaver &
# Start sound server
pulseaudio --start --log-target=syslog &
gnome-session &