diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-01-23 10:32:04 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-01-23 10:32:04 +0100 |
commit | e33d5f8d10d34e5a3a4bb292015961dd574f4c93 (patch) | |
tree | 09eb903b2569b1580e8ff7bfbe0f7cc4bb04f689 /install/install_linux.sh | |
parent | 819e3ced23853586bfadda0857af4e2c02f7b573 (diff) | |
download | dotfiles-e33d5f8d10d34e5a3a4bb292015961dd574f4c93.tar.gz dotfiles-e33d5f8d10d34e5a3a4bb292015961dd574f4c93.zip |
Do changes
Diffstat (limited to 'install/install_linux.sh')
-rwxr-xr-x | install/install_linux.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/install/install_linux.sh b/install/install_linux.sh index a57bfe5..dec9a2e 100755 --- a/install/install_linux.sh +++ b/install/install_linux.sh @@ -64,11 +64,11 @@ dlgYN "> Install greetd and tuigreet" res if [ $res -eq 1 ]; then tput sc $INST_PM greetd - curl https://github.com/apognu/tuigreet/releases/download/0.8.0/tuigreet-0.8.0-x86_64 -o /usr/local/bin/tuigreet - chmod +x /usr/local/bin/tuigreet - cp /etc/greetd/config.toml /etc/greetd.config.toml.orig - ln -isf "$CWD/linux/greetd.toml" /etc/greetd/config.toml - systemctl enable greetd + sudo curl https://github.com/apognu/tuigreet/releases/download/0.8.0/tuigreet-0.8.0-x86_64 -o /usr/local/bin/tuigreet + sudo chmod +x /usr/local/bin/tuigreet + sudo cp /etc/greetd/config.toml /etc/greetd.config.toml.orig + sudo ln -isf "$CWD/linux/greetd.toml" /etc/greetd/config.toml + sudo systemctl enable greetd tput rc; tput ed fi |