wip / i3wm ➔ hyprland
and, several clean-ups at the same time
This commit is contained in:
18
dots/bin/firstBoot.sh
Executable file
18
dots/bin/firstBoot.sh
Executable 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
|
||||
@@ -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/
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user