mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-26 01:43:15 +01:00
general: Add example script.
This commit is contained in:
parent
9587854303
commit
6678fa7953
22
examples/example.py
Normal file
22
examples/example.py
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
"""pywal api example."""
|
||||||
|
import pywal
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""Main function."""
|
||||||
|
image = "/home/dylan/Pictures/Wallpapers/anVmEaA.jpg"
|
||||||
|
|
||||||
|
# Return a dict with the palette.
|
||||||
|
colors = pywal.create_palette(image)
|
||||||
|
|
||||||
|
# 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, False)
|
||||||
|
|
||||||
|
# Reload xrdb, i3 and polybar.
|
||||||
|
pywal.reload_env()
|
||||||
|
|
||||||
|
# Set the wallpaper.
|
||||||
|
pywal.set_wallpaper(image)
|
Loading…
Reference in New Issue
Block a user