Skip to content

Commit

Permalink
Merge pull request #8 from tcet-opensource/7-feature-add-tcet-linux-i…
Browse files Browse the repository at this point in the history
…nstall

Add install OS option in welcome app
  • Loading branch information
Akash6222 authored Jul 6, 2023
2 parents 5d23fcc + 2ef6c96 commit 6d4cff9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions welcome
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ yad --title "Welcome" \
--no-escape \
--image=$DIR/assets/Tcet_Linux.png \
--field="<b>Update this PC</b>":fbtn "bash -c '$DIR/scripts/update.sh'" \
--field="<b>Update this PC</b>":fbtn "bash -c 'sudo -E calamares -D 8'" \
--field="<b>Fix Screen Resolution</b>":fbtn "xfce4-terminal -x '$DIR/scripts/screen-resolution.sh'" \
--field="<b>Arch AUR</b>":fbtn "bash -c '$DIR/scripts/aur.sh'" \
--field="<b>Our Discord</b>":fbtn "bash -c '$DIR/scripts/discord.sh'" \
Expand Down
23 changes: 23 additions & 0 deletions welcome-after
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/env bash

DIR=~/.local/share/tcet-welcome

yad --title "Welcome" \
--form \
--window-icon=$DIR/assets/tcetlinux-logo.png \
--columns=2\
--rows=5 \
--width=640 \
--height=380 \
--no-escape \
--image=$DIR/assets/Tcet_Linux.png \
--field="<b>Update this PC</b>":fbtn "bash -c '$DIR/scripts/update.sh'" \
--field="<b>Fix Screen Resolution</b>":fbtn "xfce4-terminal -x '$DIR/scripts/screen-resolution.sh'" \
--field="<b>Arch AUR</b>":fbtn "bash -c '$DIR/scripts/aur.sh'" \
--field="<b>Our Discord</b>":fbtn "bash -c '$DIR/scripts/discord.sh'" \
--field="<b>About US</b>":fbtn "bash -c '$DIR/scripts/py-about.sh'" \
--field="<b>Update Mirror</b>":fbtn "xfce4-terminal -x '$DIR/scripts/mirror.sh'" \
--field="<b>Arch Wiki</b>":fbtn "bash -c '$DIR/scripts/archwiki.sh'" \
--field="<b>Our Github Profile</b>":fbtn "bash -c '$DIR/scripts/github.sh'" \
--field="<b>Autostart</b>":fbtn " xfce4-terminal -x '$DIR/scripts/autostart.sh'"\
--button=Exit:1 \

0 comments on commit 6d4cff9

Please sign in to comment.