Skip to content

Commit 210d91d

Browse files
author
İSMAİL TAŞDELEN
committed
Update linux_settings.py
1 parent 27e9edc commit 210d91d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

linux_settings.py

+12-12
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import socket
1010

1111
#################################################################
12-
linux_settings = """
12+
linux_settings_ico = """
1313
_ ___ _ _ _ ___ __
1414
| | |_ _| \ | | | | \ \/ /
1515
| | | || \| | | | |\ /
@@ -39,7 +39,7 @@
3939
5) CONTACT
4040
"""
4141
###############################################################
42-
hostname_settings_text = """
42+
hostname_settings_ico = """
4343
#########################################################
4444
# HOSTNAME SETTINGS - GH0ST S0FTWARE #
4545
#########################################################
@@ -53,7 +53,7 @@
5353
#########################################################
5454
"""
5555
###############################################################
56-
dns_settings_text = """
56+
dns_settings_ico = """
5757
#########################################################
5858
# DNS SETTINGS - GH0ST S0FTWARE #
5959
#########################################################
@@ -67,7 +67,7 @@
6767
#########################################################
6868
"""
6969
###############################################################
70-
soureslist_settings_text = """
70+
soureslist_settings_ico = """
7171
#########################################################
7272
# SOURCES LIST SETTINGS - GH0ST S0FTWARE #
7373
#########################################################
@@ -81,7 +81,7 @@
8181
#########################################################
8282
"""
8383
###############################################################
84-
contact_text = """
84+
contact_ico = """
8585
#########################################################
8686
# CONTACT #
8787
#########################################################
@@ -93,7 +93,7 @@
9393
#########################################################
9494
"""
9595
###############################################################
96-
terminal_settings_text = """
96+
terminal_settings_ico = """
9797
#########################################################
9898
# TERMINAL TEXT SETTINGS - GH0ST S0FTWARE #
9999
#########################################################
@@ -107,12 +107,12 @@
107107
#########################################################
108108
"""
109109
###############################################################
110-
print linux_settings
110+
print linux_settings_ico
111111
islem = input("Yapmak İstediğiniz İşlem Numarasını Giriniz : ")
112112
os.system('cls' if os.name == 'nt' else 'clear')
113113
###############################################################
114114
if islem == 1:
115-
print hostname_settings_text
115+
print hostname_settings_ico
116116
os.system("/etc/hostname")
117117
hostname = raw_input("Yeni hostname adinizi giriniz : ")
118118
hostnamefile = open("/etc/hostname", "w")
@@ -122,7 +122,7 @@
122122
hostnamefile.close()
123123
###############################################################
124124
if islem == 2:
125-
print dns_settings_text
125+
print dns_settings_ico
126126
os.system("/etc/resolv.conf")
127127
dns = raw_input("Bir dns adresi giriniz : ")
128128
dnsfile = open("/etc/resolv.conf", "w")
@@ -132,7 +132,7 @@
132132
dnsfile.close()
133133
###############################################################
134134
if islem == 3:
135-
print soureslist_settings_text
135+
print soureslist_settings_ico
136136
os.system("/etc/apt/sources.list")
137137
source_name = raw_input("Kaynak icin bir isim belirleyiniz : ")
138138
source = raw_input("Bir kaynak giriniz : ")
@@ -143,7 +143,7 @@
143143
source_file.close()
144144
###############################################################
145145
if islem == 4:
146-
print terminal_settings_text
146+
print terminal_settings_ico
147147
os.system("/etc/bash.bashrc")
148148
terminal_text = raw_input("Ternimal yazisi icin bir isim belirleyiniz : ")
149149
terminal_text_settings_file = open("/etc/bash.bashrc", "a")
@@ -153,5 +153,5 @@
153153
terminal_text_settings_file.close()
154154
###############################################################
155155
if islem == 5:
156-
print contact_text
156+
print contact_ico
157157
###############################################################

0 commit comments

Comments
 (0)