mirror of
https://github.com/AquaMorph/dotfiles.git
synced 2025-04-29 17:25:34 +00:00
14 lines
294 B
Python
14 lines
294 B
Python
#!/usr/bin/env python3
|
|
|
|
import i3ipc, os
|
|
|
|
def onWindowClose(conn, win):
|
|
if(win.ipc_data['container']['window_properties']['class'] == 'Bitwig Studio'):
|
|
os.system('sh ~/dotfiles/scripts/audio/aquamix.sh -n')
|
|
|
|
i3 = i3ipc.Connection()
|
|
i3.on('window::close', onWindowClose)
|
|
i3.main()
|
|
|
|
|