-
Change keyboard layout:
loadkeys no
-
Verify boot mode:
ls /sys/firmware/efi/efivars(If the directory exist your computer supports EFI)
-
Ping some site on the Internet to verify connection:
ping archlinux.org
| cmake_minimum_required(VERSION 3.3) | |
| find_package(OpenGL) | |
| message( STATUS "OPENGL_FOUND = ${OPENGL_FOUND}" ) | |
| message( STATUS "OPENGL_XMESA_FOUND = ${OPENGL_XMESA_FOUND}" ) | |
| message( STATUS "OPENGL_GLU_FOUND = ${OPENGL_GLU_FOUND}" ) | |
| message( STATUS "OpenGL_OpenGL_FOUND = ${OpenGL_OpenGL_FOUND}" ) | |
| message( STATUS "OpenGL_GLX_FOUND = ${OpenGL_GLX_FOUND}" ) | |
| message( STATUS "OpenGL_EGL_FOUND = ${OpenGL_EGL_FOUND}" ) | |
| message( STATUS "OPENGL_INCLUDE_DIR = ${OPENGL_INCLUDE_DIR}" ) | |
| message( STATUS "OPENGL_EGL_INCLUDE_DIRS = ${OPENGL_EGL_INCLUDE_DIRS}" ) |
| #!/usr/bin/env python | |
| import dbus | |
| class Client(): | |
| def __init__(self): | |
| bus = dbus.SessionBus() | |
| service = bus.get_object('com.example.service', "/com/example/service") | |
| self._message = service.get_dbus_method('get_message', 'com.example.service.Message') | |
| self._quit = service.get_dbus_method('quit', 'com.example.service.Quit') |
| " VIM Configuration File | |
| " Description: Optimized for C/C++ development, but useful also for other things. | |
| " Author: Gerhard Gappmeier | |
| " | |
| " set UTF-8 encoding | |
| set enc=utf-8 | |
| set fenc=utf-8 | |
| set termencoding=utf-8 | |
| " disable vi compatibility (emulation of old bugs) |