rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

commit 5556631ecb26e79660a79b74a5b827c092cf93ae
parent ef51cfec48f7619c6e8452ff3b189d58fcbc74ef
Author: Mark Feller <mark@mfeller.io>
Date:   Wed, 28 Apr 2021 12:05:21 -0600

cleanup x11 and zsh config

Diffstat:
Mdots/.config/aliasrc | 2++
Adots/.config/x11/xinitrc | 7+++++++
Adots/.config/x11/xprofile | 10++++++++++
Adots/.config/x11/xresources | 4++++
Rdots/.zprofile -> dots/.config/zsh/.zprofile | 0
Adots/.local/bin/pash_sync | 4++++
Ddots/.xinitrc | 7-------
Ddots/.xprofile | 9---------
8 files changed, 27 insertions(+), 16 deletions(-)

diff --git a/dots/.config/aliasrc b/dots/.config/aliasrc @@ -9,6 +9,8 @@ alias rm="rm -iv" alias q="exit" alias vi=vim +alias doas="sudo" + alias weather="curl wttr.in/\~Boulder+Colorado" # Youtube diff --git a/dots/.config/x11/xinitrc b/dots/.config/x11/xinitrc @@ -0,0 +1,7 @@ +#!/bin/sh +# +# xinitrc runs automatically when you run startx. + +[ -f ~/.config/x11/xprofile ] && . ~/.config/x11/xprofile + +exec dwm diff --git a/dots/.config/x11/xprofile b/dots/.config/x11/xprofile @@ -0,0 +1,10 @@ +#!/bin/sh +# +# This file runs when a DM logs you into a grapgical session. +# If you use startx/xinit this file will also be sourced. + +xrdb $HOME/.config/x11/xresources & +setbg & +dunst & +sxhkd & +#compton --config ~/.config/compton/compton.conf & diff --git a/dots/.config/x11/xresources b/dots/.config/x11/xresources @@ -0,0 +1,3 @@ +*.background: #161819 +*.foreground: #AAAAAA +*.font: Fira Mono:size=12 +\ No newline at end of file diff --git a/dots/.zprofile b/dots/.config/zsh/.zprofile diff --git a/dots/.local/bin/pash_sync b/dots/.local/bin/pash_sync @@ -0,0 +1,4 @@ +#!/bin/sh + +rsync -rtuv ~/.local/share/pash desktop:~/.local/share +rsync -rtuv desktop:~/.local/share/pash ~/.local/share diff --git a/dots/.xinitrc b/dots/.xinitrc @@ -1,7 +0,0 @@ -#!/bin/sh -# -# xinitrc runs automatically when you run startx. - -[ -f ~/.xprofile ] && . ~/.xprofile - -ssh-agent dwm diff --git a/dots/.xprofile b/dots/.xprofile @@ -1,9 +0,0 @@ -#!/bin/sh -# -# This file runs when a DM logs you into a grapgical session. -# If you use startx/xinit this file will also be sourced. - -setbg & -dunst & -sxhkd & -compton --config ~/.config/compton/compton.conf &