aboutsummaryrefslogtreecommitdiff
path: root/diffReport.sh
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2018-08-22 18:10:20 -0400
committerKen Moore <moorekou@gmail.com>2018-08-22 18:10:20 -0400
commit4e30c44daf54e313024b1e2ce6e5bcc003cb7bac (patch)
tree1bd4292176c8ee56492a7dfd9135590fa404ce6e /diffReport.sh
parentFix up the port template for lumina-pdf (diff)
downloadlumina-4e30c44daf54e313024b1e2ce6e5bcc003cb7bac.tar.gz
lumina-4e30c44daf54e313024b1e2ce6e5bcc003cb7bac.tar.bz2
lumina-4e30c44daf54e313024b1e2ce6e5bcc003cb7bac.zip
A few fixes for Lumina:
1. Adjust the pkg-plist for FreeBSD to include the trident-dark color file. 2. Add a new function for fetching XDG standard directory paths (and create dir as needed) 3. Setup the desktop and lib classes to use the XDG standard path function now. 4. Add a bunch of fallback icons if the "start-here-lumina" icon could not be found in the current theme. These are all based on the OS name. 5. Ensure we run "xdg-user-dirs-update" before launching the session (if it is installed). This is used for the main standard dir detection. 6. Ensure that start-lumina-desktop *always* starts a new desktop session (bypassing any existing lock files for the desktop session).
Diffstat (limited to 'diffReport.sh')
-rwxr-xr-xdiffReport.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/diffReport.sh b/diffReport.sh
new file mode 100755
index 00000000..fc550c88
--- /dev/null
+++ b/diffReport.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+echo "Running for Light Directory"
+(find ~/lumina/icon-theme/material-design-light/*/*.svg | sed 's/.*material/material/' | sort) > currentFiles
+(grep -rn material-design-light ./pkg-plist | sed 's/.*material/material/g' | sed 's/scalable\///' | sort) > darkFiles
+diff currentFiles darkFiles
+rm currentFiles darkFiles
+echo "Running for Dark Directory"
+(find ~/lumina/icon-theme/material-design-dark/*/*.svg | sed 's/.*material/material/' | sort) > currentFiles
+(grep -rn material-design-dark ./pkg-plist | sed 's/.*material/material/g' | sed 's/scalable\///' | sort) > darkFiles
+diff currentFiles darkFiles
+rm currentFiles darkFiles
bgstack15