Skip to content

Instantly share code, notes, and snippets.

@joshcangit
joshcangit / Image Clipboard Filer.md
Last active September 19, 2020 10:21 — forked from orschiro/Image Clipboard Filer.md
Python script that saves an image from clipboard to a file.

Introduction

Saves an image from clipboard to a file.

Dependencies:

  • python3
  • PyGTK

Installation

@joshcangit
joshcangit / xseei.export-all.js
Last active November 10, 2020 08:04 — forked from nohamelin/xseei.export-all.js
Export your search engines in only-WebExtensions Mozilla Firefox builds
// -sp-context: browser
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*
* xseei.export-all.js
* ===================
* code-revision 3
* https://gist.github.com/nohamelin/6af8907ca2dd90a9c870629c396c9521
@joshcangit
joshcangit / xseei.import.js
Last active January 16, 2021 22:34 — forked from nohamelin/xseei.import.js
Import search engines in only-WebExtensions Mozilla Firefox builds
// -sp-context: browser
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*
* xseei.import.js
* ===============
* code-revision 2
* https://gist.github.com/nohamelin/8e2e1b50dc7d97044992ae981487c6ec
@joshcangit
joshcangit / disable-gnome-extensions.sh
Last active January 8, 2022 12:08 — forked from nicfit/disable-gnome-extensions.sh
Disable all gnome-shell extensions from command line.
for ext in $($(type -P ls) ~/.local/share/gnome-shell/extensions); do
gnome-extensions disable $ext;
done