Skip to content

Commit

Permalink
FinishPacstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
victor7w7r committed Jan 22, 2024
1 parent a1165fe commit d2c337d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lib/postchroot/fish.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ Future<void> fish() async {
await coderes(
'git clone https://github.com/victor7w7r/dotfiles /root/dotfiles',
);
await call('mkdir /root/.config');
await call('mkdir /home/$sudouser/.config');
await call('cp -r /root/dotfiles/fish /root/.config/fish');
await call('cp -r /root/dotfiles/fish /home/$sudouser/.config/fish');
await call('chown -R $sudouser:$sudouser /home/$sudouser/.config');
await call('chown -R $sudouser:$sudouser /home/$sudouser/.config/fish');

okMessage();
}
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 lightdm grub-customizer --noconfirm');
await coderes('systemctl enable lightdm.service');
'volumeicon firefox gdm grub-customizer --noconfirm');
await coderes('systemctl enable gdm.service');
okMessage();
xfce = true;
} else if (sel == 'GNOME') {
Expand Down
1 change: 1 addition & 0 deletions lib/postchroot/xfcetemplate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Future<void> xfcetemplate() async {
cyan(lang(43));

if (stdYesNo()) {
clear();
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');
Expand Down
Binary file modified pacstrap
Binary file not shown.

0 comments on commit d2c337d

Please sign in to comment.