summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-12-08 01:49:28 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-12-08 01:49:28 -0700
commit3e5f9ac0f99596b81c16e06405ff97417bd759fb (patch)
treee3b65f397b140f8a2aedf23544a45e25b1eb76fe
parent49aecca501d32ddb50a51fc1bcf2980a6943c217 (diff)
Continue transition to new config scheme
-rw-r--r--.config/x11/xinitrc7
-rw-r--r--.config/x11/xprofile14
-rw-r--r--.config/x11/xresources (renamed from .Xresources)0
l---------[-rw-r--r--].xinitrc8
l---------[-rw-r--r--].xprofile15
5 files changed, 23 insertions, 21 deletions
diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc
new file mode 100644
index 0000000..0c6736f
--- /dev/null
+++ b/.config/x11/xinitrc
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+# 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 $HOME/.xprofile ] && . $HOME/.xprofile
diff --git a/.config/x11/xprofile b/.config/x11/xprofile
new file mode 100644
index 0000000..728e4cc
--- /dev/null
+++ b/.config/x11/xprofile
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# This is run when a display manager logs in.
+# Used as source for ~/.xinitrc.
+
+nm-applet & # Network Manager.
+picom & # Transparency and stuff.
+dunst & # Notifications.
+udiskie & # Drive mounting.
+flameshot & # Screenshots.
+pasystray & # Pulse Audio tray icon.
+
+# At the end, start the WM.
+# exec i3
diff --git a/.Xresources b/.config/x11/xresources
index 38bef75..38bef75 100644
--- a/.Xresources
+++ b/.config/x11/xresources
diff --git a/.xinitrc b/.xinitrc
index 0c6736f..b6896af 100644..120000
--- a/.xinitrc
+++ b/.xinitrc
@@ -1,7 +1 @@
-#!/bin/sh
-
-# 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 $HOME/.xprofile ] && . $HOME/.xprofile
+/home/lz/.config/x11/xinitrc \ No newline at end of file
diff --git a/.xprofile b/.xprofile
index 728e4cc..bb47566 100644..120000
--- a/.xprofile
+++ b/.xprofile
@@ -1,14 +1 @@
-#!/bin/sh
-
-# This is run when a display manager logs in.
-# Used as source for ~/.xinitrc.
-
-nm-applet & # Network Manager.
-picom & # Transparency and stuff.
-dunst & # Notifications.
-udiskie & # Drive mounting.
-flameshot & # Screenshots.
-pasystray & # Pulse Audio tray icon.
-
-# At the end, start the WM.
-# exec i3
+/home/lz/.config/x11/xprofile \ No newline at end of file