Fixed some cool things!

This commit is contained in:
Jeremiah Ticket 2022-11-23 18:06:56 -07:00
parent b607fc7cd8
commit 5b12bb0428

View File

@ -1,19 +1,20 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import i3ipc import i3ipc
from i3ipc import Event
from os import system from os import system
#This script allows for sounds in i3 #This script allows for sounds in i3
i3 = i3ipc.Connection()
def on_new_window(self,i3): def on_new_window(self,i3):
system('play -n synth .25 sin 440:880 sin 480:920 remix - norm -3 pitch -500') system('play -n synth .25 sin 440:880 sin 480:920 remix - norm -3 pitch -500')
def on_mode(self,i3): def on_mode(self,event):
# mode = i3ipc.ModeEvent(['change']) mode= event.change
# if mode == 'resize': if mode == 'ratpoison':
system('play -qV0 "|sox -np synth .07 sq 400" "|sox -np synth .5 sq 800" fade h 0 .5 .5 norm -20') system('play -qV0 "|sox -np synth .07 sq 400" "|sox -np synth .5 sq 800" fade h 0 .5 .5 norm -20')
# elif mode == 'default': elif mode == 'default':
# system('play -qV0 "|sox -np synth .07 sq 400" "|sox -np synth .5 sq 800" fade h 0 .5 .5 norm -20 reverse') system('play -qV0 "|sox -np synth .07 sq 400" "|sox -np synth .5 sq 800" fade h 0 .5 .5 norm -20 reverse')
def on_workspace_focus(self,i3): def on_workspace_focus(self,i3):
system('play -qnV0 synth pi fade 0 .25 .15 pad 0 1 reverb overdrive riaa norm -8 speed 1') system('play -qnV0 synth pi fade 0 .25 .15 pad 0 1 reverb overdrive riaa norm -8 speed 1')
@ -24,7 +25,7 @@ def on_workspace_move(self,i3):
i3 = i3ipc.Connection() i3 = i3ipc.Connection()
i3.on('window::new', on_new_window) i3.on('window::new', on_new_window)
i3.on('mode', on_mode) i3.on(Event.MODE, on_mode)
# get current mode: # get current mode:
# var = i3ipc.ModeEvent(data) # var = i3ipc.ModeEvent(data)
i3.on('workspace::focus', on_workspace_focus) i3.on('workspace::focus', on_workspace_focus)