User will be ask if they want to set Thunar as default file manager if they decided to install it
This commit is contained in:
parent
8eef96db51
commit
cea9183d2d
|
|
@ -1,5 +1,8 @@
|
||||||
## Changelogs
|
## Changelogs
|
||||||
|
|
||||||
|
## 20 Sep 2024
|
||||||
|
- User will be ask if they want to set Thunar as default file manager if they decided to install it
|
||||||
|
|
||||||
## 19 Sep 2024
|
## 19 Sep 2024
|
||||||
- Added fastfetch on tty. However, will be disabled if user decided to install pokemon colorscripts
|
- Added fastfetch on tty. However, will be disabled if user decided to install pokemon colorscripts
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -47,9 +47,11 @@ if [[ "$thunar_default" == [Yy] ]]; then
|
||||||
xdg-mime default thunar.desktop application/x-wayland-gnome-saved-search
|
xdg-mime default thunar.desktop application/x-wayland-gnome-saved-search
|
||||||
echo "${OK} Thunar has been set as the default file manager." 2>&1 | tee -a "$LOG"
|
echo "${OK} Thunar has been set as the default file manager." 2>&1 | tee -a "$LOG"
|
||||||
else
|
else
|
||||||
echo "${NOTE} you choose not to set Thunar file manager." 2>&1 | tee -a "$LOG"
|
echo "${NOTE} you choose not to set Thunar as default file manager." 2>&1 | tee -a "$LOG"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
printf "\n"
|
||||||
|
|
||||||
# Check for existing configs and copy if does not exist
|
# Check for existing configs and copy if does not exist
|
||||||
for DIR1 in gtk-3.0 Thunar xfce4; do
|
for DIR1 in gtk-3.0 Thunar xfce4; do
|
||||||
DIRPATH=~/.config/$DIR1
|
DIRPATH=~/.config/$DIR1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue