logo

scripts

A bunch of scripts, some to be moved to their own repository git clone https://hacktivis.me/git/scripts.git

colorpicker.py (142B)


  1. #!/usr/bin/env python
  2. from gtk import Window, ColorSelection, main
  3. window = Window()
  4. window.add(ColorSelection())
  5. window.show_all()
  6. main()