This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
MAINTAINER Jan Issac <[email protected]> | |
# Use noninteractive debconf frontend | |
ENV DEBIAN_FRONTEND noninteractive | |
# Update | |
Run apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM issac/qt5-ubuntu:14.04 | |
MAINTAINER Jan Issac <[email protected]> | |
# Use noninteractive debconf frontend | |
ENV DEBIAN_FRONTEND noninteractive | |
# install KF5 prerequisites | |
RUN apt-get -y install kubuntu-desktop | |
RUN apt-get -y build-dep qtbase5-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global | |
source-dir /tmp/kde/src | |
build-dir /tmp/kde/build | |
kdedir /usr/local/kde | |
git-repository-base kde-projects kde: | |
# KDE4_BUILD_TESTS kept for now, for old kde4_add_unit_test stuff to be enabled | |
cmake-options -DCMAKE_BUILD_TYPE:STRING=release -DKDE4_BUILD_TESTS=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# ubuntu 16.04 has changed everything again ... | |
# if more than one profile exist, set profile to the desired profile id | |
profile="$(dconf list /org/gnome/terminal/legacy/profiles:/ | sed 's./..')" | |
dconf write /org/gnome/terminal/legacy/profiles:/$profile/palette "['#3F3F3F3F3F3F' | |
, '#CCCC93939393', '#23227F7EBFBF', '#656553537070', '#BABA2F2E5958', '#BABA2F2E5958', '#8C8CD0D0D3D3', '#DCDCDCDCCCCC', '#3F3F3F3F3F3F', '#CCCC93939393', '#23227F7EBFBF', '#656553537070', '#BABA2F2E5958', '#1F1F7171ABAB', '#8C8CD0D0D3D3', '#DCDCDCDCCCCC']" | |
# hide the menu bar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
dir=$(dirname $0) | |
gconfdir=/apps/gnome-terminal/profiles | |
echo # This makes the prompts easier to follow (as do other random echos below) | |
######################## | |
### Select a profile ### | |
######################## |
NewerOlder