From 3e5f9ac0f99596b81c16e06405ff97417bd759fb Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado <55825613+luevano@users.noreply.github.com> Date: Tue, 8 Dec 2020 01:49:28 -0700 Subject: Continue transition to new config scheme --- .Xresources | 21 --------------------- .config/x11/xinitrc | 7 +++++++ .config/x11/xprofile | 14 ++++++++++++++ .config/x11/xresources | 21 +++++++++++++++++++++ .xinitrc | 8 +------- .xprofile | 15 +-------------- 6 files changed, 44 insertions(+), 42 deletions(-) delete mode 100644 .Xresources create mode 100644 .config/x11/xinitrc create mode 100644 .config/x11/xprofile create mode 100644 .config/x11/xresources mode change 100644 => 120000 .xinitrc mode change 100644 => 120000 .xprofile diff --git a/.Xresources b/.Xresources deleted file mode 100644 index 38bef75..0000000 --- a/.Xresources +++ /dev/null @@ -1,21 +0,0 @@ -!! Dracula Xresources palette -*.foreground: #F8F8F2 -*.background: #282A36 -*.selforeground: #000000 -*.selbackground: #F1FA8C -*.color0: #000000 -*.color8: #4D4D4D -*.color1: #FF5555 -*.color9: #FF6E67 -*.color2: #50FA7B -*.color10: #5AF78E -*.color3: #F1FA8C -*.color11: #F4F99D -*.color4: #BD93F9 -*.color12: #CAA9FA -*.color5: #FF79C6 -*.color13: #FF92D0 -*.color6: #8BE9FD -*.color14: #9AEDFE -*.color7: #BFBFBF -*.color15: #E6E6E6 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/.config/x11/xresources b/.config/x11/xresources new file mode 100644 index 0000000..38bef75 --- /dev/null +++ b/.config/x11/xresources @@ -0,0 +1,21 @@ +!! Dracula Xresources palette +*.foreground: #F8F8F2 +*.background: #282A36 +*.selforeground: #000000 +*.selbackground: #F1FA8C +*.color0: #000000 +*.color8: #4D4D4D +*.color1: #FF5555 +*.color9: #FF6E67 +*.color2: #50FA7B +*.color10: #5AF78E +*.color3: #F1FA8C +*.color11: #F4F99D +*.color4: #BD93F9 +*.color12: #CAA9FA +*.color5: #FF79C6 +*.color13: #FF92D0 +*.color6: #8BE9FD +*.color14: #9AEDFE +*.color7: #BFBFBF +*.color15: #E6E6E6 diff --git a/.xinitrc b/.xinitrc deleted file mode 100644 index 0c6736f..0000000 --- a/.xinitrc +++ /dev/null @@ -1,7 +0,0 @@ -#!/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/.xinitrc b/.xinitrc new file mode 120000 index 0000000..b6896af --- /dev/null +++ b/.xinitrc @@ -0,0 +1 @@ +/home/lz/.config/x11/xinitrc \ No newline at end of file diff --git a/.xprofile b/.xprofile deleted file mode 100644 index 728e4cc..0000000 --- a/.xprofile +++ /dev/null @@ -1,14 +0,0 @@ -#!/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/.xprofile b/.xprofile new file mode 120000 index 0000000..bb47566 --- /dev/null +++ b/.xprofile @@ -0,0 +1 @@ +/home/lz/.config/x11/xprofile \ No newline at end of file -- cgit v1.2.3-54-g00ecf