Skip to content

Commit e59044b

Browse files
authored
Add branding script for ObsidianOS
1 parent 46ba2fc commit e59044b

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

style.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
echo "Branding ObsidianOS..."
3+
cat << 'EOF' > /etc/os-release
4+
NAME="ObsidianOS"
5+
PRETTY_NAME="Obsidian GNU/Linux"
6+
ID=obsidian
7+
BUILD_ID=rolling
8+
ANSI_COLOR="38;2;138;43;226"
9+
HOME_URL="https://obsidianos.xyz"
10+
DOCUMENTATION_URL="https://wiki.obsidianos.xyz"
11+
SUPPORT_URL="https://github.com/orgs/Obsidian-OS/discussions"
12+
BUG_REPORT_URL="https://github.com/orgs/Obsidian-OS/discussions"
13+
PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/"
14+
LOGO=obsidianos
15+
EOF
16+
echo "Branding /etc/issue..."
17+
cat << 'EOF' > /etc/issue
18+
O]\ | ___ * | * __n a___ O]\ ___
19+
\ \\ | S__ ___| ___| | | \ \\ S__
20+
\[] b] __| I D__| I |__| | | \[] __|
21+
You are on \n running kernel \r for \m
22+
It is currently \d \t and you are on tty \l
23+
Thanks for using ObsidianOS!
24+
EOF
25+
echo "Done!"
26+
echo "If using Arch based ObsidianOS install the AUR package obos-genissue-git."

0 commit comments

Comments
 (0)