-
Notifications
You must be signed in to change notification settings - Fork 0
/
shortas.py
314 lines (251 loc) · 11 KB
/
shortas.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
import os
import sys
from PyQt5.QtWidgets import (
QApplication, QMainWindow, QVBoxLayout, QWidget, QLabel,
QLineEdit, QPushButton, QListWidget, QMessageBox, QHBoxLayout, QComboBox, QFileDialog, QDialog, QDialogButtonBox
)
from PyQt5.QtGui import QFont, QPixmap, QIcon
from PyQt5.QtCore import Qt, QSettings
def get_logo_path():
if hasattr(sys, "_MEIPASS"):
return os.path.join(sys._MEIPASS, "shortaslo.png")
elif os.path.exists("/usr/share/icons/hicolor/48x48/apps/shortaslo.png"):
return "/usr/share/icons/hicolor/48x48/apps/shortaslo.png"
elif os.path.exists("shortaslo.png"):
return "shortaslo.png"
return None
def get_icon_path():
if hasattr(sys, "_MEIPASS"):
return os.path.join(sys._MEIPASS, "shortaslo.png")
elif os.path.exists("/usr/share/icons/hicolor/48x48/apps/shortaslo.png"):
return "/usr/share/icons/hicolor/48x48/apps/shortaslo.png"
return None
LOGO_PATH = get_logo_path()
ICON_PATH = get_icon_path()
class AboutDialog(QDialog):
def __init__(self):
super().__init__()
# Dialog başlığı
self.setWindowTitle("Hakkında")
self.setFixedSize(360, 360)
# Layout
layout = QVBoxLayout()
# Uygulama hakkında bilgi
about_label = QLabel("""<h2>ShortAs</h2>
<p>Bu uygulama, Gelişmiş Grafiksel Kullanıcı Arayüzlü Alias Yönetim Aracıdır.</p>
<p>Kullanıcının terminal alias'larını kolay ve güvenli şekilde yönetmesine yardımcı olur..</p>
<p><b>Geliştirici:</b> ALG Yazılım Inc.©</p>
<p>www.algyazilim.com | info@algyazilim.com</p>
</br>
<p>Fatih ÖNDER (CekToR) | fatih@algyazilim.com</p>
<p><b>GitHub:</b> https://github.com/cektor</p>
</br>
</br>
<p><b>ALG Yazılım</b> Pardus'a Göç'ü Destekler.</p>
</br>
<p><b>Sürüm:</b> 1.0</p>
""")
about_label.setWordWrap(True) # WordWrap özelliği eklendi
layout.addWidget(about_label)
# Kapatma butonu
button_box = QDialogButtonBox(QDialogButtonBox.Ok)
button_box.accepted.connect(self.accept)
layout.addWidget(button_box)
self.setLayout(layout)
# Temayı uygula
self.apply_theme()
def apply_theme(self):
"""Dialog'un temasını uygular."""
if self.is_dark_mode():
self.setStyleSheet("QDialog { background-color: #2e2e2e; color: white; }")
else:
self.setStyleSheet("QDialog { background-color: white; color: black; }")
def is_dark_mode(self):
"""Linux'ta sistem temasının karanlık modda olup olmadığını kontrol eder (GNOME, KDE, XFCE)."""
desktop_env = os.getenv("XDG_CURRENT_DESKTOP", "").lower()
if desktop_env in ["gnome", "kde"]:
return os.getenv("GTK_THEME", "").lower().find("dark") != -1
elif desktop_env == "xfce":
current_theme = os.popen("xfconf-query -c xsettings -p /Net/ThemeName").read().strip().lower()
return "dark" in current_theme
return False
class AliasManager(QMainWindow):
def __init__(self):
super().__init__()
# Uygulama simgesini ayarla
if ICON_PATH:
self.setWindowIcon(QIcon(ICON_PATH)) # QPixmap yerine QIcon kullanıldı
# Ayarları QSettings ile sakla
self.settings = QSettings("ALGSoftware", "ShortAs")
# Alias dosyasını kontrol et ve oluştur
self.alias_file = os.path.expanduser("~/.bash_aliases")
if not os.path.exists(self.alias_file):
open(self.alias_file, "w").close()
# Ana widget ve layout
central_widget = QWidget()
self.setCentralWidget(central_widget)
layout = QVBoxLayout()
central_widget.setLayout(layout)
# Logo ekle
if LOGO_PATH:
logo_pixmap = QPixmap(LOGO_PATH)
logo_label = QLabel()
logo_label.setPixmap(logo_pixmap.scaled(200, 100, Qt.KeepAspectRatio))
logo_label.setAlignment(Qt.AlignCenter)
layout.addWidget(logo_label)
# Başlık etiketi
title_label = QLabel("ShortAs")
title_label.setFont(QFont("Courier", 24, QFont.Bold))
title_label.setAlignment(Qt.AlignCenter)
layout.addWidget(title_label)
# Başlık etiketi
title_label = QLabel("Gelişmiş Grafiksel Kullanıcı Arayüzlü Alias Yönetim Aracı")
title_label.setFont(QFont("Courier", 13, QFont.Bold))
title_label.setAlignment(Qt.AlignCenter)
layout.addWidget(title_label)
# Tema seçici
self.theme_combo = QComboBox()
self.theme_combo.addItems(["Sistem Teması", "Aydınlık Tema", "Karanlık Tema"])
self.theme_combo.currentIndexChanged.connect(self.change_theme)
layout.addWidget(self.theme_combo)
# Alias giriş alanı
entry_layout = QHBoxLayout()
layout.addLayout(entry_layout)
self.alias_input = QLineEdit()
self.alias_input.setPlaceholderText("Alias Adı")
entry_layout.addWidget(QLabel("Alias Adı:"))
entry_layout.addWidget(self.alias_input)
self.command_input = QLineEdit()
self.command_input.setPlaceholderText("Komut")
entry_layout.addWidget(QLabel("Komut:"))
entry_layout.addWidget(self.command_input)
# Kısa açıklama alanı
self.description_input = QLineEdit()
self.description_input.setPlaceholderText("Alias Açıklaması (Opsiyonel)")
entry_layout.addWidget(QLabel("Açıklama:"))
entry_layout.addWidget(self.description_input)
# Alias ekleme butonu
add_button = QPushButton("Alias Ekle")
add_button.clicked.connect(self.add_alias)
layout.addWidget(add_button)
# Alias silme butonu
delete_button = QPushButton("Alias Sil")
delete_button.clicked.connect(self.delete_alias)
layout.addWidget(delete_button)
# Alias listesi
self.alias_list = QListWidget()
layout.addWidget(self.alias_list)
# Alias arama alanı
self.search_input = QLineEdit()
self.search_input.setPlaceholderText("Alias Ara")
self.search_input.textChanged.connect(self.search_alias)
layout.addWidget(self.search_input)
# Alias dışa aktarma butonu
export_button = QPushButton("Alias'ları Dışa Aktar")
export_button.clicked.connect(self.export_aliases)
layout.addWidget(export_button)
# Alias içe aktarma butonu
import_button = QPushButton("Alias'ları İçe Aktar")
import_button.clicked.connect(self.import_aliases)
layout.addWidget(import_button)
# Hakkında butonu
about_button = QPushButton("Hakkında")
about_button.clicked.connect(self.show_about_dialog)
layout.addWidget(about_button)
# Başlangıçta temayı ayarla
self.init_theme()
# Uygulama başlatıldığında mevcut alias'ları listele
self.list_aliases()
def init_theme(self):
"""Uygulamanın başlangıçta temasını ayarlar."""
saved_theme = self.settings.value("theme", "Sistem Teması")
index = self.theme_combo.findText(saved_theme)
if index != -1:
self.theme_combo.setCurrentIndex(index)
else:
self.theme_combo.setCurrentIndex(0)
self.apply_theme(saved_theme)
def change_theme(self):
"""Tema seçildiğinde bu temayı uygular ve kaydeder."""
selected_theme = self.theme_combo.currentText()
self.settings.setValue("theme", selected_theme)
self.apply_theme(selected_theme)
def apply_theme(self, theme):
"""Seçilen temaya göre stil uygulaması."""
if theme == "Aydınlık Tema":
self.setStyleSheet("")
elif theme == "Karanlık Tema":
self.setStyleSheet("QWidget { background-color: #2e2e2e; color: white; }")
elif theme == "Sistem Teması":
self.setStyleSheet("")
def show_about_dialog(self):
dialog = AboutDialog()
dialog.exec_()
def list_aliases(self):
"""Alias dosyasını oku ve listeyi güncelle."""
self.alias_list.clear()
with open(self.alias_file, "r") as file:
aliases = file.readlines()
for alias in aliases:
self.alias_list.addItem(alias.strip())
def add_alias(self):
"""Yeni alias ekler."""
alias_name = self.alias_input.text().strip()
command = self.command_input.text().strip()
description = self.description_input.text().strip()
if not alias_name or not command:
QMessageBox.warning(self, "Eksik Alan", "Alias adı ve komut gereklidir!")
return
# Alias'ı dosyaya ekle
with open(self.alias_file, "a") as file:
file.write(f"alias {alias_name}='{command}' # {description}\n")
# Listeyi güncelle
self.list_aliases()
# Temizle
self.alias_input.clear()
self.command_input.clear()
self.description_input.clear()
def delete_alias(self):
"""Seçili alias'ı siler."""
selected_item = self.alias_list.currentItem()
if selected_item:
alias = selected_item.text().split(" ")[0].replace("alias", "").strip()
with open(self.alias_file, "r") as file:
lines = file.readlines()
with open(self.alias_file, "w") as file:
for line in lines:
if alias not in line:
file.write(line)
self.list_aliases()
def search_alias(self):
"""Alias'lar içinde arama yapar."""
search_text = self.search_input.text().lower()
for row in range(self.alias_list.count()):
item = self.alias_list.item(row)
item.setHidden(search_text not in item.text().lower())
def export_aliases(self):
"""Alias'ları dışa aktarır."""
options = QFileDialog.Options()
file_path, _ = QFileDialog.getSaveFileName(self, "Alias'ları Dışa Aktar", "", "Tüm Dosyalar (*)", options=options)
if file_path:
with open(file_path, "w") as file:
with open(self.alias_file, "r") as alias_file:
file.write(alias_file.read())
def import_aliases(self):
"""Alias'ları içe aktarır."""
options = QFileDialog.Options()
file_path, _ = QFileDialog.getOpenFileName(self, "Alias'ları İçe Aktar", "", "Tüm Dosyalar (*)", options=options)
if file_path:
with open(file_path, "r") as file:
imported_aliases = file.readlines()
with open(self.alias_file, "a") as file:
file.writelines(imported_aliases)
self.list_aliases()
if __name__ == "__main__":
app = QApplication(sys.argv)
if ICON_PATH:
app.setWindowIcon(QIcon(ICON_PATH))
window = AliasManager()
window.setWindowTitle("ShortAs | Gelişmiş Grafiksel Kullanıcı Arayüzlü Alias Yönetim Aracı")
window.show()
sys.exit(app.exec_())