-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* revs revs * GPG pub key GPG pub key * Notes rev Notes rev * bash libs revs bash libs revs * ubuntu compatibility (unfinished) ubuntu compatibility (unfinished) * finished ubuntu compatibility, cleanup, refactoring finished ubuntu compatibility, cleanup, refactoring
- Loading branch information
1 parent
ad8dc0d
commit b5f97ce
Showing
14 changed files
with
754 additions
and
150 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2019-2024 GPLv3, Slideshow Crypto Ticker by Mike Kilday: [email protected] (leave this copyright / attribution intact in ALL forks / copies!) | ||
|
||
|
||
FIND_DISPLAY=$(w -h $USER | awk '$3 ~ /:[0-9.]*/{print $3}') | ||
|
||
DISPLAY=$FIND_DISPLAY | ||
|
||
export DISPLAY=$FIND_DISPLAY | ||
|
||
|
||
# Chromium's FULL PATH | ||
CHROMIUM_PATH=$(which chromium) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,6 @@ | |
# Copyright 2019-2024 GPLv3, Slideshow Crypto Ticker by Mike Kilday: [email protected] (leave this copyright / attribution intact in ALL forks / copies!) | ||
|
||
|
||
FIND_DISPLAY=$(w -h $USER | awk '$3 ~ /:[0-9.]*/{print $3}') | ||
|
||
DISPLAY=$FIND_DISPLAY | ||
|
||
export DISPLAY=$FIND_DISPLAY | ||
|
||
|
||
# Create epiphany user directory if it doesn't exist yet | ||
if [ ! -d ~/.config/epiphany ]; then | ||
mkdir -p ~/.config/epiphany | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2019-2024 GPLv3, Slideshow Crypto Ticker by Mike Kilday: [email protected] (leave this copyright / attribution intact in ALL forks / copies!) | ||
|
||
|
||
FIND_DISPLAY=$(w -h $USER | awk '$3 ~ /:[0-9.]*/{print $3}') | ||
|
||
DISPLAY=$FIND_DISPLAY | ||
|
||
export DISPLAY=$FIND_DISPLAY | ||
|
||
|
||
# Firefox's FULL PATH | ||
FIREFOX_PATH=$(which firefox-esr) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,16 @@ | |
|
||
# Copyright 2019-2024 GPLv3, Slideshow Crypto Ticker by Mike Kilday: [email protected] (leave this copyright / attribution intact in ALL forks / copies!) | ||
|
||
# Authentication of X sessions | ||
export XAUTHORITY=~/.Xauthority | ||
|
||
|
||
# EXPLICITLY set any dietpi paths | ||
# Export too, in case we are calling another bash instance in this script | ||
if [ -f /boot/dietpi/.version ]; then | ||
PATH=/boot/dietpi:$PATH | ||
export PATH=$PATH | ||
fi | ||
|
||
# EXPLICITLY set any ~/.local/bin paths | ||
# Export too, in case we are calling another bash instance in this script | ||
|
@@ -19,10 +29,9 @@ export PATH=$PATH | |
fi | ||
|
||
|
||
|
||
# Cache updating | ||
bash ~/slideshow-crypto-ticker/bash/cron/cache.bash | ||
|
||
|
||
# Keep screensaver off | ||
bash ~/slideshow-crypto-ticker/bash/cron/keep-screensaver-off.bash | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,5 @@ | |
|
||
# Copyright 2019-2024 GPLv3, Slideshow Crypto Ticker by Mike Kilday: [email protected] (leave this copyright / attribution intact in ALL forks / copies!) | ||
|
||
|
||
FIND_DISPLAY=$(w -h $USER | awk '$3 ~ /:[0-9.]*/{print $3}') | ||
|
||
DISPLAY=$FIND_DISPLAY | ||
|
||
export DISPLAY=$FIND_DISPLAY | ||
|
||
# Virtually type the ctrl key | ||
xdotool key ctrl |
Oops, something went wrong.