From 045d022164f6b710e48e44b79b006940af1648fb Mon Sep 17 00:00:00 2001 From: committer Date: Sun, 19 May 2024 21:29:48 -0500 Subject: [PATCH] / lemurs upd --- dots/i3wm/config | 2 +- dots/lemurs/i3 | 1 + scripts/99_deploy.sh | 23 ++++++++++++++--------- 3 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 dots/lemurs/i3 diff --git a/dots/i3wm/config b/dots/i3wm/config index f607f95..adde0d9 100644 --- a/dots/i3wm/config +++ b/dots/i3wm/config @@ -206,7 +206,7 @@ bindsym Ctrl+Print exec --no-startup-id scrot -d 3 -e 'xclip $f -selection clipb exec --no-startup-id nextcloud exec_always --no-startup-id setxkbmap -model pc105 -layout us,no -option grp:caps_toggle,grp_led:scroll; # keyboard layout switch exec --no-startup-id pasystray -exec --no-startup-id nitrogen +exec --no-startup-id nitrogen --restore # screen off after 30 min (1800 sec) exec_always --no-startup-id xset dpms 0 0 1800; diff --git a/dots/lemurs/i3 b/dots/lemurs/i3 new file mode 100644 index 0000000..452ba37 --- /dev/null +++ b/dots/lemurs/i3 @@ -0,0 +1 @@ +startx & diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index cc0ed25..ce58dbe 100644 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -245,16 +245,21 @@ if [ ${operation} == "dots" ] ; then deploy_file "${dots_trg}/xorg/.*" "${file_path}/" # lemurs (display/login manager) - file_name=.xinitrc + file_name=config file_path=/etc/lemurs/wms - if [ -f ${file_path}/${file_name} ] ; then - echo "" - echo "softlink already exists: ${file_path}/${file_name}" - else - echo "" - echo "creating soft link: ${file_path}/${file_name} ➔ /home/${user}/.xinitrc" - ln -s /home/${user}/.xinitrc /etc/lemurs/wms - fi + mkdir -p ${file_path} + deploy_file "${dots_trg}/lemurs/*" "${file_path}/" + + #file_name=.xinitrc + #file_path=/etc/lemurs/wms + #if [ -f ${file_path}/${file_name} ] ; then + # echo "" + # echo "softlink already exists: ${file_path}/${file_name}" + #else + # echo "" + # echo "creating soft link: ${file_path}/${file_name} ➔ /home/${user}/.xinitrc" + # ln -s /home/${user}/.xinitrc /etc/lemurs/wms + #fi fi