summaryrefslogtreecommitdiff
path: root/examples/example.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-22 10:04:56 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-22 10:04:56 +1000
commitc6147fd0eb0387c5cc4334dfe9c17f097fdea246 (patch)
treedc649ac99a225e6bdeab15af666a21d7d6bd1aba /examples/example.py
parentc8dd8f4d03fc79b5594e8d873e0aba77e360796a (diff)
examples: Move examples out of the repo to the wiki.
Diffstat (limited to 'examples/example.py')
-rw-r--r--examples/example.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/examples/example.py b/examples/example.py
deleted file mode 100644
index b4b40e1..0000000
--- a/examples/example.py
+++ /dev/null
@@ -1,31 +0,0 @@
-"""Simple script for wal api."""
-import pywal
-
-
-def main():
- """Main function."""
- # Validate image and pick a random image if a
- # directory is given below.
- image = pywal.get_image("/home/dylan/Pictures/Wallpapers/")
-
- # Return a dict with the palette.
- # Set quiet to 'True' to disable notifications.
- colors = pywal.create_palette(image, quiet=False)
-
- # Apply the palette to all open terminals.
- # Second argument is a boolean for VTE terminals.
- # Set it to true if the terminal you're using is
- # VTE based. (xfce4-terminal, termite, gnome-terminal.)
- pywal.send_sequences(colors, vte=False)
-
- # Reload xrdb, i3 and polybar.
- pywal.reload_env()
-
- # Export template files.
- pywal.export_all_templates(colors)
-
- # Set the wallpaper.
- pywal.set_wallpaper(image)
-
-
-main()