diff --git a/home/dot_xinitrc b/home/dot_xinitrc deleted file mode 100644 index 2e2fcf2..0000000 --- a/home/dot_xinitrc +++ /dev/null @@ -1,5 +0,0 @@ -#exec dbus-launch - -xinput --map-to-output 'ELAN901C:00 04F3:2C29' eDP1 - -exec dbus-launch leftwm diff --git a/home/executable_dot_xinitrc b/home/executable_dot_xinitrc new file mode 100644 index 0000000..bf6e3a0 --- /dev/null +++ b/home/executable_dot_xinitrc @@ -0,0 +1,3 @@ +#!/bin/sh + +. ~/.xprofile diff --git a/home/dot_xprofile b/home/executable_dot_xprofile similarity index 59% rename from home/dot_xprofile rename to home/executable_dot_xprofile index 543f746..970bff1 100644 --- a/home/dot_xprofile +++ b/home/executable_dot_xprofile @@ -1,2 +1,5 @@ +#!/bin/sh + xinput --map-to-output 'ELAN901C:00 04F3:2C29' eDP1 +xss-lock -- ~/bin/lock & diff --git a/home/private_dot_config/alacritty/alacritty.yml b/home/private_dot_config/alacritty/alacritty.yml index 44dfa6e..9060769 100644 --- a/home/private_dot_config/alacritty/alacritty.yml +++ b/home/private_dot_config/alacritty/alacritty.yml @@ -48,7 +48,7 @@ window: # by DPI and the specified value is always added at both opposing sides. padding: x: 10 - y: 5 + y: 10 # Spread additional padding evenly around the terminal content. dynamic_padding: true diff --git a/home/private_dot_config/lvim/lua/plugins.lua b/home/private_dot_config/lvim/lua/plugins.lua index a660772..ae65cb5 100644 --- a/home/private_dot_config/lvim/lua/plugins.lua +++ b/home/private_dot_config/lvim/lua/plugins.lua @@ -4,6 +4,7 @@ local p = function(name) return string.format("require'config.%s'", name) end lvim.plugins = { { 'Mofiqul/dracula.nvim' }, { 'ggandor/lightspeed.nvim' }, + { 'elkowar/yuck.vim' }, { 'goolord/alpha-nvim', config = p"alpha" }, diff --git a/system/env.sh b/system/env.sh index 582dd0b..e5fc9d9 100644 --- a/system/env.sh +++ b/system/env.sh @@ -1,8 +1,7 @@ # XDG export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}" - -export PATH=$PATH:~/bin +export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.local/cache}" export HISTFILE=~/.zsh_history export HISTSIZE=32768