12 lines
361 B
Python
12 lines
361 B
Python
|
import os
|
||
|
from ..utils import BasicSegment
|
||
|
|
||
|
|
||
|
class Segment(BasicSegment):
|
||
|
def add_to_powerline(self):
|
||
|
powerline = self.powerline
|
||
|
if not os.access(powerline.cwd, os.W_OK):
|
||
|
powerline.append(' %s ' % powerline.lock,
|
||
|
powerline.theme.READONLY_FG,
|
||
|
powerline.theme.READONLY_BG)
|