Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Fullaxx/ubuntu-desktop into bionic
Browse files Browse the repository at this point in the history
  • Loading branch information
Fullaxx committed Aug 10, 2023
2 parents 20a575a + 4df184d commit 3be4f37
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 4 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN apt-get update && \
dbus-x11 \
fbpanel \
hsetroot \
less \
locales \
nano \
openbox \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ Right-Click to activate the Openbox menu system. \
You will find a number of convenience scripts for running applications.

Terminals:
* [xterm](https://invisible-island.net/xterm/), uxterm, [Eterm](https://sourceforge.net/projects/eterm/), [sakura](http://www.pleyades.net/david/projects/sakura), [terminology](https://www.enlightenment.org/about-terminology.md), [terminator](https://gnome-terminator.org/), [tilix](https://gnunn1.github.io/tilix-web/), [tilda](https://github.com/lanoxx/tilda), [archipelago (AI)](https://github.com/npezza93/archipelago), [hyper (AI)](https://github.com/zeit/hyper), [powershell](https://github.com/PowerShell/PowerShell)
* [xterm](https://invisible-island.net/xterm/), uxterm, [Eterm](https://sourceforge.net/projects/eterm/), [kitty](https://github.com/kovidgoyal/kitty), [sakura](http://www.pleyades.net/david/projects/sakura), [terminology](https://www.enlightenment.org/about-terminology.md), [terminator](https://gnome-terminator.org/), [tilix](https://gnunn1.github.io/tilix-web/), [tilda](https://github.com/lanoxx/tilda), [archipelago (AI)](https://github.com/npezza93/archipelago), [hyper (AI)](https://github.com/zeit/hyper), [powershell](https://github.com/PowerShell/PowerShell)

Browsers:
* [chrome](https://www.google.com/chrome/), [chromium](https://www.chromium.org/), [firefox](https://www.mozilla.org/en-US/firefox/), [vivaldi](https://vivaldi.com/), [tor browser](https://www.torproject.org/), [ncsa mosiac (AI)](https://github.com/alandipert/ncsa-mosaic), [edge](https://www.microsoftedgeinsider.com/en-us/download/), [Pale Moon](https://www.palemoon.org/)
Expand Down
2 changes: 1 addition & 1 deletion app/tiger.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [ -n "${VNCPASS}" ]; then
fi

if [ -n "${USER}" ]; then
chown -R ${USER}.${GROUP} ${HOME}
chown -R ${USER}:${GROUP} ${HOME}
SUDOUSEROPT="-u ${USER}"
fi

Expand Down
3 changes: 2 additions & 1 deletion conf/menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
<menu id="apps-terminals-menu" label="Terminals">
<item label="xterm"><action name="Execute"><command>xterm</command></action></item>
<item label="uxterm"><action name="Execute"><command>uxterm</command></action></item>
<item label="sakura"><action name="Execute"><command>/app/scripts/sakura.sh</command></action></item>
<!-- <item label="st"><action name="Execute"><command>st</command></action></item> -->
<item label="Eterm"><action name="Execute"><command>/app/scripts/eterm.sh</command></action></item>
<item label="kitty"><action name="Execute"><command>/app/scripts/kitty.sh</command></action></item>
<item label="sakura"><action name="Execute"><command>/app/scripts/sakura.sh</command></action></item>
<item label="terminology"><action name="Execute"><command>/app/scripts/terminology.sh</command></action></item>
<item label="terminator"><action name="Execute"><command>/app/scripts/terminator.sh</command></action></item>
<item label="tilix"><action name="Execute"><command>/app/scripts/tilix.sh</command></action></item>
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

export DEBIAN_FRONTEND="noninteractive"
URL="https://update.code.visualstudio.com/1.49.3/linux-deb-x64/stable"
URL="https://update.code.visualstudio.com/1.80.2/linux-deb-x64/stable"
DEB="/tmp/vscode.deb"

wget ${URL} -O ${DEB}
Expand Down
14 changes: 14 additions & 0 deletions scripts/kitty.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

export DEBIAN_FRONTEND="noninteractive"
BINARY="kitty"

BINARYLOC=`which ${BINARY}`
if [ "$?" -ne "0" ]; then
set -e

xterm -T AptGetUpdate -g 100x30 -e sudo apt-get update
xterm -T AptGetInstall -g 100x30 -e sudo apt-get install -y ${BINARY}
fi

${BINARY}

0 comments on commit 3be4f37

Please sign in to comment.