Try and use Libertine to get this really working.
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
#!/usr/bin/env bash | |
if [ -f build-settings.sh ]; then | |
source build-settings.sh | |
else | |
echo "ERROR! Could not source build-settings.sh." | |
exit 1 | |
fi | |
SEED_DIR="/var/lib/snapd/seed" |
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
#!/usr/bin/env bash | |
SCREENS=$(xrandr --query | grep connected | grep -v disconnected | cut -d' ' -f1) | |
INTERNAL=$(echo ${SCREENS} | grep eDP-1-1) | |
RET=$? | |
if [ ${RET} -eq 0 ]; then | |
echo "Internal panel detected." | |
xrandr --output eDP-1-1 --auto | |
exit | |
fi |
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
#!/usr/bin/env python3 | |
# Copyright (C) 2018 Martin Wimpress <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
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
#!/usr/bin/python3 | |
#http://people.ubuntu.com/~robert-ancell/snapd-glib/reference/index.html | |
import getpass | |
import gi | |
import json | |
import os | |
import sys | |
gi.require_version ('Snapd', '1') |
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
name: gitkraken | |
version: 2.7.1 | |
summary: Unleash your repo | |
description: | | |
Insomnia is a cross-platform REST client, built on top of Electron. | |
confinement: devmode | |
parts: | |
gitkraken: |
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
name: insomnia | |
version: 5.7.14 | |
summary: The most intuitive cross-platform REST API Client | |
description: | | |
Insomnia is a cross-platform REST client, built on top of Electron. | |
confinement: devmode | |
parts: | |
insomnia: |
I hereby claim:
- I am flexiondotorg on github.
- I am wimpress (https://keybase.io/wimpress) on keybase.
- I have a public key whose fingerprint is 79F9 461B F24B 27F5 0DEB 8A50 7454 357C FFEE 1E5C
To claim this, I am signing this object:
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
from __future__ import unicode_literals, print_function, absolute_import | |
from gi.repository import Gio | |
import os.path | |
VALID = {'toplevel': ('expand', 'size', 'orientation'), | |
'launcher': ('object-type', 'launcher-location', 'locked', 'menu-path', 'position', 'toplevel-id'), | |
'applet': ('object-type', 'applet-iid', 'toplevel-id', 'position', 'locked'), | |
'menu-bar': ('object-type', 'applet-iid', 'toplevel-id', 'position', 'locked'), | |
'menu': ('object-type', 'toplevel-id', 'position', 'locked'), | |
'action': ('object-type', 'action-type', 'position', 'toplevel-id'), |
NewerOlder