Skip to content

Commit

Permalink
add shebangs
Browse files Browse the repository at this point in the history
  • Loading branch information
Christine Koppelt committed Nov 16, 2013
1 parent 7b4cc54 commit c5457e8
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 8 deletions.
3 changes: 2 additions & 1 deletion animations/black.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import acabsl
import time
Expand Down
3 changes: 2 additions & 1 deletion animations/blue.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import acabsl
import time
Expand Down
2 changes: 2 additions & 0 deletions animations/dropping.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from acabsl import send
from acabsl import update
import acabsl
Expand Down
9 changes: 7 additions & 2 deletions animations/dropping_bothsides.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from acabsl import send
from acabsl import update
import acabsl
Expand All @@ -10,8 +15,8 @@

def setcol(col, r, g, b, rtime):
for i in range(0,acabsl.WALLSIZEY):
send(col,i,r,g,b,rtime);
send(acabsl.WALLSIZEX - col - 1,i,r,g,b,rtime);
send(col,i,r,g,b,rtime,0);
send(acabsl.WALLSIZEX - col - 1,i,r,g,b,rtime,0);
update()
time.sleep(tick)
h = 0
Expand Down
3 changes: 2 additions & 1 deletion animations/gallerie.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import acabsl
import time
Expand Down
2 changes: 2 additions & 0 deletions animations/gameoflife.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from acabsl import send
from acabsl import update
import acabsl
Expand Down
2 changes: 2 additions & 0 deletions animations/rainbowscroll.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from acabsl import send
from acabsl import update
import acabsl
Expand Down
2 changes: 2 additions & 0 deletions animations/s-color4-faster.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import acabsl
from acabsl import send
from acabsl import update
Expand Down
2 changes: 2 additions & 0 deletions animations/s-color4.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import acabsl
from acabsl import send
from acabsl import update
Expand Down
2 changes: 2 additions & 0 deletions animations/screw.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from acabsl import send
from acabsl import update
import acabsl
Expand Down
3 changes: 2 additions & 1 deletion animations/set.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import acabsl
import time
Expand Down
3 changes: 2 additions & 1 deletion animations/snake.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Version: 0.2
# Author: digit (markus)
Expand Down
3 changes: 2 additions & 1 deletion animations/white.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import acabsl
import time
Expand Down

0 comments on commit c5457e8

Please sign in to comment.