summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bash_profile2
-rw-r--r--.bashrc2
-rw-r--r--.config/i3/config6
-rw-r--r--.profile2
-rw-r--r--.xinitrc9
-rw-r--r--.xprofile11
l---------.zprofile1
7 files changed, 27 insertions, 6 deletions
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