This file contains hidden or 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
CPU: Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz | |
Kernel: 3.16.0-28-generic #38-Ubuntu SMP Fri Dec 12 17:37:40 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux | |
OS: Ubuntu 15.04 vivid (Beta) from December/January 2015 | |
(NVidia GT610 tested on Ubuntu 14.10 utopic on same hardware) |
This file contains hidden or 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
umask 007 |
This file contains hidden or 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
[Allow harmless stuff] | |
Identity=unix-user:guest-* | |
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;com.canonical.indicator.sound.AccountsService.ModifyOwnUser;org.freedesktop.accounts.change-own-user-data | |
ResultActive=yes | |
[Allow handling removable media] | |
Identity=unix-user:guest-* | |
Action=org.freedesktop.udisks2.filesystem-mount;org.freedesktop.udisks2.eject-media;org.freedesktop.udisks2.ata-standby;org.freedesktop.udisks2.power-off-drive;org.freedesktop.udisks2.modify-device;org.freedesktop.udisks2.cancel-job;org.freedesktop.udisks2.rescan;org.freedesktop.udisks2.encrypted-unlock;org.freedesktop.udisks2.encrypted-change-passphrase | |
ResultActive=yes |
This file contains hidden or 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
[Completely disable suspend and hibernate] | |
Identity=unix-user:* | |
Action=org.freedesktop.upower.suspend;org.freedesktop.upower.hibernate;org.freedesktop.login1.suspend*;org.freedesktop.login1.hibernate* | |
ResultAny=no | |
ResultInactive=no | |
ResultActive=no |
This file contains hidden or 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
touch "$HOME"/.skip-guest-warning-dialog | |
if [[ -r /usr/share/applications/google-chrome.desktop ]] ; then | |
mkdir -p "$HOME"/.local/share/applications | |
sed -e '/Exec/s/google[a-z-]\+/& --password-store=basic/' -e '/^Name=/s/=/&Guest /' \ | |
< /usr/share/applications/google-chrome.desktop > "$HOME"/.local/share/applications/google-chrome.desktop | |
fi | |
mkdir -p "$HOME"/.config/autostart | |
for service in blueman.desktop deja-dup-monitor.desktop indicator-bluetooth.desktop indicator-power.desktop light-locker.desktop vino-server.desktop nm-applet.desktop ; do | |
if [[ -e /etc/xdg/autostart/$service ]] ; then |
This file contains hidden or 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
gsettings set org.gnome.desktop.lockdown disable-user-switching true | |
gsettings set org.gnome.desktop.session idle-delay 0 | |
gsettings set com.canonical.indicator.session suppress-restart-menuitem true | |
gsettings set com.canonical.indicator.session suppress-shutdown-menuitem true | |
gsettings set org.gnome.desktop.wm.keybindings switch-input-source "['<Alt>Shift_L']" | |
gsettings set org.gnome.desktop.input-sources sources "[('xkb', 'de+deadgraveacute'), ('xkb', 'il')]" | |
gsettings set com.canonical.indicator.datetime show-day true | |
gsettings set com.canonical.indicator.datetime show-seconds true | |
gsettings set com.canonical.indicator.datetime show-date true | |
gsettings set com.canonical.indicator.datetime show-week-numbers true |
This file contains hidden or 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
#!/bin/bash | |
# | |
# Trivial DEB repo management | |
# | |
# Written by Schlomo Schapiro | |
# Licensed under the GNU General Public License, see http://www.gnu.org/licenses/gpl.html for full text | |
set -e -E -u | |
if [[ ! "${REPO_BASE_DIR:-}" ]] ; then | |
ME_DIR="$(dirname "$(readlink -f "$0")")" | |
for CHECK_DIR in "$ME_DIR" "$ME_DIR"/../repo "$ME_DIR"/repo ; do |
This file contains hidden or 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
APT::FTPArchive::Release::Origin "Schlomo"; | |
APT::FTPArchive::Release::Label "Schlomo Stable"; | |
APT::FTPArchive::Release::Architectures "amd64 armhf armel i386"; | |
APT::FTPArchive::Release::Description "Private Packages"; |
This file contains hidden or 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
schlomo@brho:~/src/rpi-image-creator$ ./rpi-image-creator --chroot | |
Switching over to run as root | |
Fetching http://downloads.raspberrypi.org/raspbian/images/raspbian-2015-02-17/2015-02-16-raspbian-wheezy.zip | |
Checksum of download/2015-02-16-raspbian-wheezy.zip: OK | |
Loop-back mounting temp/2015-02-16-raspbian-wheezy.img | |
Raspbian Image Details: | |
Filesystem Size Used Avail Use% Mounted on | |
/dev/mapper/loop0p1 56M 15M 42M 26% mnt/img_root/boot | |
/dev/mapper/loop0p2 2.9G 2.3G 462M 84% mnt/img_root | |
Modifying Image |
This file contains hidden or 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
schlomo@brho:~/src/rpi-image-creator$ ./rpi-image-creator /dev/sdd | |
Switching over to run as root | |
Fetching http://downloads.raspberrypi.org/raspbian/images/raspbian-2015-02-17/2015-02-16-raspbian-wheezy.zip | |
Checksum of download/2015-02-16-raspbian-wheezy.zip: OK | |
Loop-back mounting temp/2015-02-16-raspbian-wheezy.img | |
Raspbian Image Details: | |
Filesystem Size Used Avail Use% Mounted on | |
/dev/mapper/loop0p1 56M 15M 42M 26% mnt/img_root/boot | |
/dev/mapper/loop0p2 2.9G 2.3G 462M 84% mnt/img_root | |
Modifying Image |