PepMiniiso/pmostools/peptools/welfunc.py

64 lines
1.3 KiB
Python
Raw Permalink Normal View History

"""
* Author: "PepDebian(peppermintosteam@proton.me)
*
* License: SPDX-License-Identifier: GPL-3.0-or-later
*
* This file is used to keep functions that are used for the Welcome
* Screen
"""
import os.path
# This will get the logged in user
gusr = os.getlogin()
spath = "/home/" + gusr + "/.local/share/pmostools/peptools"
def suggested_packages():
""" Open the suggested packages """
os.system('python3 ' + spath + '/suggested.py')
def hub():
"""Open the Hub"""
os.system('hub')
2023-11-19 13:16:45 -01:00
##SSB's
def pep_docs():
"""Open Pep Docs"""
os.system('luakit -U https://peppermint_os.codeberg.page/html/ &'
)
2023-11-19 13:16:45 -01:00
## Community Section
def mastodon():
"""Open Mastodon"""
os.system('luakit -U https://fosstodon.org/@peppermintos &'
)
def code_berg():
"""Open Codeberg"""
os.system('luakit -U https://codeberg.org/Peppermint_OS & '
)
def matrix():
"""Open Matrix"""
2023-11-19 13:16:45 -01:00
os.system('luakit -U https://matrix.to/#/!JhPtEbNexzFaoOkvGp:matrix.org?'
'via=matrix.org & '
)
def source_forge():
"""Open Sourceforge"""
os.system('luakit -U https://sourceforge.net/p/peppermintos/pepos/ & '
)
def build_date():
"""Open BuildDate wiki"""
2023-11-19 13:16:45 -01:00
os.system('luakit -U https://sourceforge.net/p/peppermintos/pepwiki/'
'BuildDate/ & '
)