Skip to content

Instantly share code, notes, and snippets.

@peey
peey / gui_hello_world.py
Created November 2, 2020 16:46 — forked from siwells/Tkinter_hello_world.py
A Python GUI "Hello World" using Tkinter
from tkinter import *
root = Tk()
w = Label(root, text="Hello World")
w.pack()
root.mainloop()
#!/bin/bash
########################################################
#
# ## i3_maximize.sh ##
#
# Implements maximization of a window in i3.
# Swaps the focused container into a new workspace and
# and restores it when run again.
#