Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • feature/kasm_0.9.2
  • master
2 results

Target

Select target project
  • exact/SWC
1 result
Select Git revision
  • feature/kasm_0.9.2
  • master
2 results
Show changes
Commits on Source (2)
......@@ -65,9 +65,8 @@ RUN mkdir /metauser_home_vanilla/Downloads && chown metauser:metauser /metauser_
# Extra SW
#RUN apt-get install libreoffice gimp -y
# Shell for terminal
COPY files/runshell.sh /bin/
RUN chmod 755 /bin/runshell.sh
# Terminator alternative terminal
RUN apt-get install terminator -y
#------------------------
......
[global_config]
title_transmit_bg_color = "#000000"
title_receive_bg_color = "#000000"
title_inactive_fg_color = "#ffffff"
title_inactive_bg_color = "#000000"
inactive_color_offset = 1.0
[keybindings]
new_tab = <Primary>t
copy = <Primary>c
paste = <Primary>v
[profiles]
[[default]]
icon_bell = False
cursor_color = "#aaaaaa"
foreground_color = "#f3f3f3"
scrollback_infinite = True
[layouts]
[[default]]
[[[window0]]]
type = Window
parent = ""
[[[child1]]]
type = Terminal
parent = window0
[plugins]
[Desktop Entry]
Version=1.0
Name=Firefox Web Browser
Comment=Browse the World Wide Web
GenericName=Web Browser
Keywords=Internet;WWW;Browser;Web;Explorer
Exec=firefox %u
Terminal=false
X-MultipleArgs=false
Type=Application
Exec=exo-open --launch WebBrowser %u
Icon=web-browser
Icon=firefox
Categories=GNOME;GTK;Network;WebBrowser;
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;x-scheme-handler/chrome;video/webm;application/x-xpinstall;
StartupNotify=true
Terminal=false
Categories=Network;X-XFCE;X-Xfce-Toplevel;
OnlyShowIn=XFCE;
X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https;
Name=Web Browser
Comment=Browse the web
X-XFCE-Source=file:///usr/share/applications/exo-web-browser.desktop
Actions=new-window;new-private-window;
X-XFCE-Source=file:///usr/share/applications/firefox.desktop
[Desktop Action new-window]
Name=Open a New Window
Exec=firefox -new-window
[Desktop Action new-private-window]
Name=Open a New Private Window
Exec=firefox -private-window
[Desktop Entry]
Version=1.0
Name=Terminator
Comment=Advanced terminal emulator
TryExec=terminator
Exec=terminator
Icon=terminator
Type=Application
Exec=exo-open --launch TerminalEmulator
Icon=utilities-terminal
Categories=GNOME;GTK;Utility;TerminalEmulator;System;
StartupNotify=true
Terminal=false
Categories=Utility;X-XFCE;X-Xfce-Toplevel;
OnlyShowIn=XFCE;
Name=Terminal Emulator
Comment=Use the command line
X-XFCE-Source=file:///usr/share/applications/exo-terminal-emulator.desktop
X-Ubuntu-Gettext-Domain=terminator
X-Ayatana-Desktop-Shortcuts=NewWindow;
Keywords=terminal;shell;prompt;command;commandline;
X-XFCE-Source=file:///usr/share/applications/terminator.desktop
[NewWindow Shortcut Group]
Name=Open a New Window
Exec=terminator
TargetEnvironment=Unity
......@@ -17,7 +17,5 @@ MiscTabCloseMiddleClick=TRUE
MiscTabPosition=GTK_POS_TOP
MiscHighlightUrls=TRUE
MiscScrollAlternateScreen=TRUE
CustomCommand=/bin/runshell.sh
DefaultWorkingDir=/metauser
RunCustomCommand=TRUE
#!/bin/bash
cd /home/metauser
exec /bin/bash
#!/bin/bash
docker push registry.ict.inaf.it/exact/swc/base:v0.3.0
docker push registry.ict.inaf.it/exact/swc/ssh:v0.3.0
docker push registry.ict.inaf.it/exact/swc/xcalc:v0.3.0
docker push registry.ict.inaf.it/exact/swc/x11web:v0.3.0
docker push registry.ict.inaf.it/exact/swc/minimaldesktop:v0.3.0
docker push registry.ict.inaf.it/exact/swc/basicdesktop:v0.3.0
docker push registry.ict.inaf.it/exact/swc/jupyternotebook:v0.3.0
set -e
VERSION="20.04v1.0.0"
docker push registry.ict.inaf.it/exact/swc/base:$VERSION
docker push registry.ict.inaf.it/exact/swc/ssh:$VERSION
docker push registry.ict.inaf.it/exact/swc/xcalc:$VERSION
docker push registry.ict.inaf.it/exact/swc/x11web:$VERSION
docker push registry.ict.inaf.it/exact/swc/minimaldesktop:$VERSION
docker push registry.ict.inaf.it/exact/swc/basicdesktop:$VERSION
docker push registry.ict.inaf.it/exact/swc/jupyternotebook:$VERSION
#!/bin/bash
docker tag base registry.ict.inaf.it/exact/swc/base:v0.3.0
docker tag ssh registry.ict.inaf.it/exact/swc/ssh:v0.3.0
docker tag xcalc registry.ict.inaf.it/exact/swc/xcalc:v0.3.0
docker tag x11web registry.ict.inaf.it/exact/swc/x11web:v0.3.0
docker tag minimaldesktop registry.ict.inaf.it/exact/swc/minimaldesktop:v0.3.0
docker tag basicdesktop registry.ict.inaf.it/exact/swc/basicdesktop:v0.3.0
docker tag jupyternotebook registry.ict.inaf.it/exact/swc/jupyternotebook:v0.3.0
set -e
VERSION="20.04v1.0.0"
docker tag base registry.ict.inaf.it/exact/swc/base:$VERSION
docker tag ssh registry.ict.inaf.it/exact/swc/ssh:$VERSION
docker tag xcalc registry.ict.inaf.it/exact/swc/xcalc:$VERSION
docker tag x11web registry.ict.inaf.it/exact/swc/x11web:$VERSION
docker tag minimaldesktop registry.ict.inaf.it/exact/swc/minimaldesktop:$VERSION
docker tag basicdesktop registry.ict.inaf.it/exact/swc/basicdesktop:$VERSION
docker tag jupyternotebook registry.ict.inaf.it/exact/swc/jupyternotebook:$VERSION