bcff948e39
With the ongoing scene redesign, it needs to be rewritten. However, given that it is not used widely based on support information from various bug reports and our available man power is sparse, the most reasonable thing is to drop the effect, unfortunately.
11 lines
289 B
Python
11 lines
289 B
Python
#!/usr/bin/env python3
|
|
|
|
import fileinput
|
|
|
|
for line in fileinput.input():
|
|
if not line.startswith("LayoutName="):
|
|
continue
|
|
value = line[len("LayoutName="):].strip()
|
|
if value != "flipswitch":
|
|
continue
|
|
print("# DELETE LayoutName") # will use the default layout
|