Skip to content

Commit 48d07eb

Browse files
committed
update
1 parent fecabf2 commit 48d07eb

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

usr/share/archlinux-tweak-tool/Fixes_GUI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def GUI(self, Gtk, GdkPixbuf, vboxStack19, sddm, Functions):
4949

5050
hbox5 = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=10)
5151
hbox5_label = Gtk.Label(xalign=0)
52-
hbox5_label.set_text("Get the original ArcoLinux /etc/sddm.conf")
52+
hbox5_label.set_text("Get the original ArcoLinux /etc/sddm.conf and /etc/sddm.conf.d/kde_settings.conf")
5353
button_Apply_Mirrors = Gtk.Button(label="Reset sddm.conf")
5454
button_Apply_Mirrors.connect ("clicked", self.on_click_fix_sddm_conf)
5555
hbox5.pack_start(hbox5_label, False, False, 10)

usr/share/archlinux-tweak-tool/archlinux-tweak-tool.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1778,11 +1778,7 @@ def on_click_fix_mainstream(self,widget):
17781778
shell=False,
17791779
stdout=Functions.subprocess.PIPE,
17801780
stderr=Functions.subprocess.STDOUT)
1781-
command_show = 'alacritty --hold -e cat /etc/pacman.d/mirrorlist'
1782-
Functions.subprocess.call(command_show.split(" "),
1783-
shell=False,
1784-
stdout=Functions.subprocess.PIPE,
1785-
stderr=Functions.subprocess.STDOUT)
1781+
17861782
GLib.idle_add(Functions.show_in_app_notification, self, "Mainstream servers have been saved")
17871783

17881784
def on_click_get_arch_mirrors(self,widget):

usr/share/archlinux-tweak-tool/data/arco/bin/arcolinux-fix-sddm-config

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
##################################################################################################################
2828

2929
echo "###############################################################################"
30-
echo "Getting latest /etc/sddm.conf"
30+
echo "Getting latest /etc/sddm.conf and /etc/sddm.conf.d/kde_settings.conf"
3131
echo "###############################################################################"
3232

3333
Online=0
@@ -88,6 +88,11 @@ if [ $Online -eq 1 ] && [ $file_etc_sddmk -eq 1 ] ; then
8888
REPLACE="#User="
8989
sudo sed -i "s/$FIND/$REPLACE/g" /etc/sddm.conf.d/kde_settings.conf
9090
echo "/etc/sddm.conf and /etc/sddm.conf.d/kde_settings.conf saved from github"
91+
92+
echo "###############################################################################"
93+
echo "### DONE - YOU CAN CLOSE THIS WINDOW ####"
94+
echo "###############################################################################"
95+
9196
fi
9297

9398
#new sddmk config + not online
@@ -97,8 +102,10 @@ if [ $Online -eq 0 ] && [ $file_etc_sddmk -eq 1 ] ; then
97102
sudo cp /usr/share/archlinux-tweak-tool/data/arco/sddm/sddm.conf /etc/sddm.conf
98103
sudo cp /usr/share/archlinux-tweak-tool/data/arco/sddm.conf.d/kde_settings.conf /etc/sddm.conf.d/kde_settings.conf
99104
echo "/etc/sddm.conf and /etc/sddm.conf.d/kde_settings.conf saved from local system"
100-
fi
101105

102-
echo "###############################################################################"
103-
echo "### DONE - YOU CAN CLOSE THIS WINDOW ####"
104-
echo "###############################################################################"
106+
echo "###############################################################################"
107+
echo "### DONE - YOU CAN CLOSE THIS WINDOW ####"
108+
echo "###############################################################################"
109+
110+
111+
fi

0 commit comments

Comments
 (0)