From 4132a5e141f37d7385db65635ec99b98953f1141 Mon Sep 17 00:00:00 2001 From: David Luevano <55825613+luevano@users.noreply.github.com> Date: Tue, 11 Feb 2020 15:35:34 -0700 Subject: Add xinitrc and xprofile, mods to minor things --- .bash_profile | 2 +- .bashrc | 2 +- .config/i3/config | 6 +++--- .profile | 2 +- .xinitrc | 9 +++++++++ .xprofile | 11 +++++++++++ .zprofile | 1 + 7 files changed, 27 insertions(+), 6 deletions(-) create mode 100644 .xinitrc create mode 100644 .xprofile create mode 120000 .zprofile diff --git a/.bash_profile b/.bash_profile index c13e9c6..2c51184 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,4 +1,4 @@ -# +#!/bin/sh # ~/.bash_profile # diff --git a/.bashrc b/.bashrc index a355b0c..0400ba8 100644 --- a/.bashrc +++ b/.bashrc @@ -1,4 +1,4 @@ -# +#!/bin/sh # ~/.bashrc # diff --git a/.config/i3/config b/.config/i3/config index 1dc60e9..058e824 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -10,9 +10,9 @@ gaps inner 5 gaps outer 5 set $mod Mod4 font pango:monospace 10 -exec --no-startup-id dunst & -exec --no-startup-id nm-applet & -exec --no-startup-id udiskie & +# exec --no-startup-id dunst & +# exec --no-startup-id nm-applet & +# exec --no-startup-id udiskie & ## i3config variables. set $term --no-startup-id $TERMINAL set $fmgr --no-startup-id $FILE diff --git a/.profile b/.profile index 260adf3..5276e29 100644 --- a/.profile +++ b/.profile @@ -1,4 +1,4 @@ -# +#!/bin/sh # ~/.profile # diff --git a/.xinitrc b/.xinitrc new file mode 100644 index 0000000..04c809a --- /dev/null +++ b/.xinitrc @@ -0,0 +1,9 @@ +#!/bin/sh +# ~/.xinitrc +# + +# This is run when 'startx' or 'xinit' is executed, +# but since display managers use ~/.xprofile instead, +# .xprofile is sourced to be compatible with both. + +[[ -f ~/.xprofile ]] && . ~/.xprofile diff --git a/.xprofile b/.xprofile new file mode 100644 index 0000000..d5708c1 --- /dev/null +++ b/.xprofile @@ -0,0 +1,11 @@ +#!/bin/sh +# ~/.xprofile +# + +# This is run when a display manager logs in. +# Used as source for ~/.xinitrc. + +dunst & # Notifications. +nm-applet & # Network manager. +udiskie & # Drive mounting. +flameshot & # Screenshots. diff --git a/.zprofile b/.zprofile new file mode 120000 index 0000000..aa7da3a --- /dev/null +++ b/.zprofile @@ -0,0 +1 @@ +.profile \ No newline at end of file -- cgit v1.2.3-54-g00ecf