Skip to content

Commit

Permalink
UpdateToLightdm
Browse files Browse the repository at this point in the history
  • Loading branch information
victor7w7r committed Jan 22, 2024
1 parent 231975d commit a1165fe
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/postchroot/graphical.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Future<void> graphical() async {
await coderes(
'pacman -S xfce4 xfce4-goodies gtk-engines gtk-engine-murrine '
'xdg-user-dirs gvfs network-manager-applet '
'volumeicon firefox gdm grub-customizer --noconfirm');
await coderes('systemctl enable gdm.service');
'volumeicon firefox lightdm grub-customizer --noconfirm');
await coderes('systemctl enable lightdm.service');
okMessage();
xfce = true;
} else if (sel == 'GNOME') {
Expand Down
2 changes: 1 addition & 1 deletion lib/postchroot/hostname_locale.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Future<void> localer() async {
);
await coderes('locale-gen');
unawaited(
File('/etc/hostname').writeAsString(
File('/etc/locale.conf').writeAsString(
'LANG="$sel.UTF-8"\nLC_TIME="$sel.UTF-8"\nLANGUAGE="$sel:$sel:es"\n',
),
);
Expand Down
3 changes: 2 additions & 1 deletion lib/postchroot/xfcetemplate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Future<void> xfcetemplate() async {
cyan(lang(43));

if (stdYesNo()) {
await coderes('pacman -S catppuccin-gtk-theme-mocha --noconfirm');
await coderes('pacman -S catppuccin-gtk-theme-mocha papirus-icon-theme '
'ttf-ubuntu-font-family --noconfirm');
await call('cp -r /root/dotfiles/xfce4 /root/.config/xfce4');
await call('cp -r /root/dotfiles/xfce4 /home/$sudouser/.config/xfce4');
await call('cp -r /root/dotfiles/gtk-3.0 /root/.config/gtk-3.0');
Expand Down

0 comments on commit a1165fe

Please sign in to comment.