From 997d9f8ff9ba47aed509c77baa3183a67eaf9596 Mon Sep 17 00:00:00 2001 From: kdamani Date: Wed, 21 Oct 2020 16:13:52 -0400 Subject: updated dotfiles --- xprofile/.bash_profile | 19 +++++++++++++++++++ xprofile/.xinitrc | 16 ++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 xprofile/.bash_profile create mode 100644 xprofile/.xinitrc (limited to 'xprofile') diff --git a/xprofile/.bash_profile b/xprofile/.bash_profile new file mode 100644 index 0000000..8d4eb4c --- /dev/null +++ b/xprofile/.bash_profile @@ -0,0 +1,19 @@ +# +# ~/.bash_profile +# + +[[ -f ~/.bashrc ]] && . ~/.bashrc + +#if [ -z "$DISPLAY" ] && [ "$(fgconsole)" -eq 1 ]; then + #startx +#fi + +#[ -z "$DISPLAY" -a "$(fgconsole)" -eq 1 ] && exec startx + +export PATH=$PATH:$HOME/.config/Scripts +export XDG_CONFIG_HOME="$HOME/.config" +export BROWSER="firefox" +export EDITOR="nvim" +export TERMINAL="st" +export READER="zathura" +export QT_QPA_PLATFORMTHEME="qt5ct" diff --git a/xprofile/.xinitrc b/xprofile/.xinitrc new file mode 100644 index 0000000..b1814ca --- /dev/null +++ b/xprofile/.xinitrc @@ -0,0 +1,16 @@ +#!/bin/sh +# +# ~/.xinitrc +# +# Executed by startx (run your window manager from here) + +if [ -d /etc/X11/xinit/xinitrc.d ]; then + for f in /etc/X11/xinit/xinitrc.d/*; do + [ -x "$f" ] && . "$f" + done + unset f +fi + + +#sxhkd & exec bspwm +exec dwm & -- cgit v1.2.3