1
0
Fork 0

removed gen_i3sway_config because it isn't necessary with sway

This commit is contained in:
tastytea 2024-01-08 01:21:31 +01:00
parent e63084441b
commit 8714a543d3
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
#!/usr/bin/env zsh
# generates config for i3 and sway by combining the common and local configs
setopt LOCAL_OPTIONS ERR_RETURN NO_UNSET PIPE_FAIL
for wm in i3 sway; do
local dir=${HOME}/.config/${wm}
[[ -f ${dir}/config.local ]] || touch ${dir}/config.local
\cat ${dir}/config.common ${dir}/config.local > ${dir}/config
done