summaryrefslogtreecommitdiff
path: root/src/usr/bin/use-package-fluxbox-files
blob: 3d8e5f22194098edc2a367576f8f04a10386d823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/sh
# File: /usr/bin/use-package-fluxbox-files
# Location: stackrpms-acer-chromebook package
# Author: bgstack15
# SPDX-License-Identifier: GPL-3.0
# Startdate: 2024-04-30-3 12:46
# Title: Use Platform Package-Provided Fluxbox Files
# Package: stackrpms-acer-chromebook
# Purpose: Symlink available package-provided fluxbox files to user fluxbox path
# History:
# Usage:
#    use-package-fluxbox-files --all
# Improve:
# Dependencies:
#    
# Documentation:
#   Notably, this will decline to mkdir ~/.fluxbox if not present.
THIS_PACKAGE="stackrpms-acer-chromebook"

# useful only for testing:
DESTDIR=

# FAIL OUT IF SUDO
test -n "${SUDO_USER}" && { echo "Please run ${0} as a user, not with sudo. It makes sense only for a user. Aborted." ; exit 1 ; }

# PARSE PARAMETERS or environment variables
# _SOFT is an additional parameter passed to ln, which uses -f to force the operation.
if test -n "${ALL}" || echo " ${*} " | grep -qE -e " --all " ;
then
   _SOFT="f"
fi
# SOFT takes precedence, so calculate it last.
if test -n "${SOFT}" || echo " ${*} " | grep -qE -e " --soft " ;
then
   _SOFT=""
fi
for tf in $( find "${DESTDIR}/etc/${THIS_PACKAGE}" -name 'fluxbox.*' -printf '%f\n' ) ;
do
   df="$( echo "${tf}" | sed -r -e 's/^fluxbox\.//;' )" # destfile
   ldf="${HOME}/.fluxbox/${df}" # long destfile
   ltf="${DESTDIR}/etc/${THIS_PACKAGE}/${tf}" # long thisfile
   _currentdest="$( readlink -f "${ldf}" 2>/dev/null )"
   if test "${_currentdest}" = "${ltf}" ;
   then
      echo "${ldf} ALREADY -> ${ltf}"
   else
      # do not quote _SOFT:
      output="$( ln -v -s${_SOFT} "${ltf}" "${ldf}" 2>&1 )"
      if test $? -ne 0 ;
      then
         printf '%s %s\n' "${output}" "-> ${_currentdest}"
      else
         printf '%s%s\n' "${output}" ", WAS -> ${_currentdest}"
      fi
   fi
done
bgstack15