mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-15 04:22:28 +03:00
37 lines
1.6 KiB
Python
37 lines
1.6 KiB
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author:Tuncay ÇOLAK <tuncay.colak@tubitak.gov.tr>
|
||
|
|
||
|
from base.plugin.abstract_plugin import AbstractPlugin
|
||
|
|
||
|
class Safe(AbstractPlugin):
|
||
|
def __init__(self, context):
|
||
|
super(Safe, self).__init__()
|
||
|
self.context = context
|
||
|
self.username = str(context.get_username())
|
||
|
self.logger = self.get_logger()
|
||
|
self.logger.debug('Parameters were initialized.')
|
||
|
|
||
|
def handle_safe_mode(self):
|
||
|
# Killing conky processes
|
||
|
self.logger.debug('Conky named processes will be killed.')
|
||
|
self.execute('killall -9 conky')
|
||
|
# delete autostart and conky config file of logout username
|
||
|
self.conky_config_file_dir = '{0}.conky/'.format(self.Sessions.user_home_path(self.username))
|
||
|
self.conky_config_file_path = '{0}conky.conf'.format(self.conky_config_file_dir)
|
||
|
if self.is_exist(self.conky_config_file_dir):
|
||
|
self.logger.debug('Conky config file will be deleted of {0}.'.format(self.username))
|
||
|
self.delete_file(self.conky_config_file_path)
|
||
|
|
||
|
self.autostart_dir_path = '{0}.config/autostart/'
|
||
|
self.autorun_file_path = '{0}conky.desktop'
|
||
|
home_path = self.Sessions.user_home_path(self.username)
|
||
|
auto_start_file = self.autorun_file_path.format(self.autostart_dir_path.format(home_path))
|
||
|
if self.is_exist(auto_start_file):
|
||
|
self.delete_file(auto_start_file)
|
||
|
self.logger.debug('Removing autostart file of user {0}'.format(self.username))
|
||
|
|
||
|
def handle_mode(context):
|
||
|
safe = Safe(context)
|
||
|
safe.handle_safe_mode()
|