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_ ...@@ -65,9 +65,8 @@ RUN mkdir /metauser_home_vanilla/Downloads && chown metauser:metauser /metauser_
# Extra SW # Extra SW
#RUN apt-get install libreoffice gimp -y #RUN apt-get install libreoffice gimp -y
# Shell for terminal # Terminator alternative terminal
COPY files/runshell.sh /bin/ RUN apt-get install terminator -y
RUN chmod 755 /bin/runshell.sh
#------------------------ #------------------------
......
[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] [Desktop Entry]
Version=1.0 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 Type=Application
Exec=exo-open --launch WebBrowser %u Icon=firefox
Icon=web-browser 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 StartupNotify=true
Terminal=false Actions=new-window;new-private-window;
Categories=Network;X-XFCE;X-Xfce-Toplevel; X-XFCE-Source=file:///usr/share/applications/firefox.desktop
OnlyShowIn=XFCE;
X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https; [Desktop Action new-window]
Name=Web Browser Name=Open a New Window
Comment=Browse the web Exec=firefox -new-window
X-XFCE-Source=file:///usr/share/applications/exo-web-browser.desktop
[Desktop Action new-private-window]
Name=Open a New Private Window
Exec=firefox -private-window
[Desktop Entry] [Desktop Entry]
Version=1.0 Name=Terminator
Comment=Advanced terminal emulator
TryExec=terminator
Exec=terminator
Icon=terminator
Type=Application Type=Application
Exec=exo-open --launch TerminalEmulator Categories=GNOME;GTK;Utility;TerminalEmulator;System;
Icon=utilities-terminal
StartupNotify=true StartupNotify=true
Terminal=false X-Ubuntu-Gettext-Domain=terminator
Categories=Utility;X-XFCE;X-Xfce-Toplevel; X-Ayatana-Desktop-Shortcuts=NewWindow;
OnlyShowIn=XFCE; Keywords=terminal;shell;prompt;command;commandline;
Name=Terminal Emulator X-XFCE-Source=file:///usr/share/applications/terminator.desktop
Comment=Use the command line
X-XFCE-Source=file:///usr/share/applications/exo-terminal-emulator.desktop [NewWindow Shortcut Group]
Name=Open a New Window
Exec=terminator
TargetEnvironment=Unity
...@@ -17,7 +17,5 @@ MiscTabCloseMiddleClick=TRUE ...@@ -17,7 +17,5 @@ MiscTabCloseMiddleClick=TRUE
MiscTabPosition=GTK_POS_TOP MiscTabPosition=GTK_POS_TOP
MiscHighlightUrls=TRUE MiscHighlightUrls=TRUE
MiscScrollAlternateScreen=TRUE MiscScrollAlternateScreen=TRUE
CustomCommand=/bin/runshell.sh
DefaultWorkingDir=/metauser DefaultWorkingDir=/metauser
RunCustomCommand=TRUE
#!/bin/bash
cd /home/metauser
exec /bin/bash
#!/bin/bash #!/bin/bash
docker push registry.ict.inaf.it/exact/swc/base:v0.3.0 set -e
docker push registry.ict.inaf.it/exact/swc/ssh:v0.3.0
docker push registry.ict.inaf.it/exact/swc/xcalc:v0.3.0 VERSION="20.04v1.0.0"
docker push registry.ict.inaf.it/exact/swc/x11web:v0.3.0 docker push registry.ict.inaf.it/exact/swc/base:$VERSION
docker push registry.ict.inaf.it/exact/swc/minimaldesktop:v0.3.0 docker push registry.ict.inaf.it/exact/swc/ssh:$VERSION
docker push registry.ict.inaf.it/exact/swc/basicdesktop:v0.3.0 docker push registry.ict.inaf.it/exact/swc/xcalc:$VERSION
docker push registry.ict.inaf.it/exact/swc/jupyternotebook:v0.3.0 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 #!/bin/bash
docker tag base registry.ict.inaf.it/exact/swc/base:v0.3.0 set -e
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 VERSION="20.04v1.0.0"
docker tag x11web registry.ict.inaf.it/exact/swc/x11web:v0.3.0 docker tag base registry.ict.inaf.it/exact/swc/base:$VERSION
docker tag minimaldesktop registry.ict.inaf.it/exact/swc/minimaldesktop:v0.3.0 docker tag ssh registry.ict.inaf.it/exact/swc/ssh:$VERSION
docker tag basicdesktop registry.ict.inaf.it/exact/swc/basicdesktop:v0.3.0 docker tag xcalc registry.ict.inaf.it/exact/swc/xcalc:$VERSION
docker tag jupyternotebook registry.ict.inaf.it/exact/swc/jupyternotebook:v0.3.0 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