-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
62 additions
and
13 deletions.
There are no files selected for viewing
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,3 +1,2 @@ | ||
eog | ||
nvidia-detect | ||
printer-driver-all |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
hw-probe | ||
qrencode |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
printer-driver-all |
48 changes: 48 additions & 0 deletions
48
resource/live/includes.chroot/lib/live/config/1040-gnome-shortcuts
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/bin/sh | ||
|
||
. /lib/live/config.sh | ||
|
||
## live-config(7) - System Configuration Components | ||
## Copyright (C) 2016-2020 The Debian Live team | ||
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch> | ||
## | ||
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING. | ||
## This is free software, and you are welcome to redistribute it | ||
## under certain conditions; see COPYING for details. | ||
|
||
|
||
#set -e | ||
|
||
Cmdline () | ||
{ | ||
# Reading kernel command line | ||
for _PARAMETER in ${LIVE_CONFIG_CMDLINE} | ||
do | ||
case "${_PARAMETER}" in | ||
live-config.username=*|username=*) | ||
LIVE_USERNAME="${_PARAMETER#*username=}" | ||
;; | ||
esac | ||
done | ||
} | ||
|
||
Init () | ||
{ | ||
# Checking if package is installed or already configured | ||
if component_was_executed "gnome-shortcuts" | ||
then | ||
exit 0 | ||
fi | ||
|
||
echo -n " gnome-shortcuts" | ||
} | ||
|
||
Config () | ||
{ | ||
sudo -u $LIVE_USERNAME dbus-run-session -- /usr/local/bin/set-shortcuts.sh | ||
touch /var/lib/live/config/gnome-shortcuts | ||
} | ||
|
||
Cmdline | ||
Init | ||
Config |
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,8 +1,6 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
pipx install gnome-extensions-cli --system-site-packages | ||
sudo apt-get install --yes gnome-shell-extension-appindicator | ||
gnome-extensions enable appindicatorsupport@rgcjonas.gmail.com | ||
|
||
pipx ensurepath | ||
|
||
$HOME/.local/bin/gext install 615 # AppIndicator and KStatusNotifier Support |
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