wip / i3wm ➔ hyprland

and, several clean-ups at the same time
This commit is contained in:
committer@tuxwarrior
2026-02-25 11:22:51 -05:00
parent 2620282282
commit c8ab69ca6d
31 changed files with 351 additions and 335 deletions

18
dots/bin/firstBoot.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
# klevstul :: 26.02.25
# create nextcloud directory
# note: this folder must match the base path of `$SYNCDIR_HOSTNAME` in `dots/environment/environment`
mkdir -p /home/poq/nextcloud
# start and stop browser, if it is not already running
browser="librewolf"
if ! pgrep -x "${browser}" > /dev/null; then
echo "${browser} is not running, so it will be started and closed after a few seconds. please, wait..."
${browser} &
sleep 10
pkill ${browser}
else
echo "${browser} is already running. do nothing."
fi

View File

@@ -5,5 +5,5 @@
this_file_name=`basename "$0"`
echo "$this_file_name"
ln -s ~/mega/gitRepos/git.sr.ht ~/syncDir/gitRepos/
ln -s ~/mega/gitRepos/gitlab.com ~/syncDir/gitRepos/
ln -s /home/poq/pCloudDrive/repos/git/gitlab.com ~/syncDir/gitRepos/
ln -s /home/poq/pCloudDrive/repos/pCloud_nonGit ~/syncDir/gitRepos/

View File

@@ -11,4 +11,12 @@ if [[ "${HOSTNAME}" == "tuxwarrior" ]] ; then
hyprmon --profile office &
psensor &
synology-drive &
#hyprpaper &
#waybar &
#hypridle &
#hyprdim --strength 0.1 --dialog-dim 0.1 --duration 500 --no-dim-when-only &
fi