This file contains 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
/* gcc main.c -o vaapi-modif $(pkg-config --cflags --libs libva libva-drm libdrm) */ | |
#include <fcntl.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <inttypes.h> | |
#include <va/va.h> | |
#include <va/va_drm.h> |
This file contains 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
#!/bin/bash | |
sock=/tmp/obs-control.sock | |
if [ ! -S "$sock" ]; then | |
echo "OBS not running" | |
exit 1 | |
fi | |
case "$1" in |
This file contains 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
// gcc sway6605.c -lX11 -o sway6605 | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <X11/Xlib.h> | |
int main() { | |
Display *display; | |
Window window; | |
XEvent event; |
This file contains 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
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index 56dbd2e..b3b510c 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -40,6 +40,7 @@ if (BUILD_PLUGIN) | |
add_library(linux-vkcapture MODULE ${PLUGIN_SOURCES}) | |
target_link_libraries(linux-vkcapture libobs obs-frontend-api ${X11_xcb_LIB} ${X11_xcb_xfixes_LIB}) | |
set_target_properties(linux-vkcapture PROPERTIES PREFIX "") | |
+ set_target_properties(linux-vkcapture PROPERTIES C_STANDARD 11) | |
target_include_directories(linux-vkcapture PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>) |
This file contains 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
0.000102 main (2): ALWAYS INCLUDE THE FOLLOWING LINES WHEN SENDING DEBUG MESSAGES TO THE MAILING LIST: | |
0.000130 main (2): gphoto2 2.5.15 | |
0.000137 main (2): gphoto2 has been compiled with the following options: | |
0.000140 main (2): + gcc (C compiler used) | |
0.000144 main (2): + popt (mandatory, for handling command-line parameters) | |
0.000147 main (2): + exif (for displaying EXIF information) | |
0.000150 main (2): + cdk (for accessing configuration options) | |
0.000153 main (2): + aa (for displaying live previews) | |
0.000157 main (2): + jpeg (for displaying live previews in JPEG format) | |
0.000160 main (2): + readline (for easy navigation in the shell) |
This file contains 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
# Install KDE runtime | |
wget http://distribute.kde.org/kdeflatpak.gpg | |
flatpak --user remote-add kde http://distribute.kde.org/flatpak-testing/ --gpg-import=kdeflatpak.gpg | |
flatpak --user install kde org.kde.Platform | |
# Install QupZilla | |
wget https://qupzilla.com/flatpak/qupzillaflatpak.asc | |
flatpak --user remote-add qupzilla https://qupzilla.com/flatpak/repo/ --gpg-import=qupzillaflatpak.asc | |
flatpak --user install qupzilla org.qupzilla.QupZilla |
This file contains 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
# Maintainer: Peter Mattern <pmattern at arcor dot de> | |
_pkgname=qupzilla | |
pkgname=$_pkgname-qtwebkit-git | |
pkgver=1.8.6.32 | |
pkgrel=1 | |
pkgdesc="Cross-platform Qt web browser. Legacy QtWebKit branch." | |
arch=("i686" "x86_64") | |
url="http://www.qupzilla.com" | |
license=("GPL3" "custom") |
This file contains 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
# Quicklaunch applet | |
pkgname=kdeplasma-applets-quicklaunch | |
pkgver=1.0 | |
pkgrel=1 | |
pkgdesc="Quicklaunch applet for Plasma5" | |
arch=('i686' 'x86_64') | |
url="https://kde.org" | |
license=('GPL') | |
depends=('plasma-framework' 'plasma-workspace' 'kdeclarative' 'kio') |
This file contains 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
diff --git a/src/daemon/kded/BlueDevilDaemon.cpp b/src/daemon/kded/BlueDevilDaemon.cpp | |
index 7b1e6e4..59e0b1d 100644 | |
--- a/src/daemon/kded/BlueDevilDaemon.cpp | |
+++ b/src/daemon/kded/BlueDevilDaemon.cpp | |
@@ -110,6 +110,8 @@ BlueDevilDaemon::BlueDevilDaemon(QObject *parent, const QList<QVariant>&) | |
this, SLOT(usableAdapterChanged(Adapter*))); | |
connect(Manager::self(), SIGNAL(adapterAdded(Adapter*)), | |
this, SLOT(adapterAdded(Adapter*))); | |
+ connect(Manager::self(), SIGNAL(adapterRemoved(Adapter*)), | |
+ this, SLOT(adapterRemoved(Adapter*))); |
This file contains 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
diff --git a/BUILDING b/BUILDING | |
index 0f4defc..8a6ad81 100644 | |
--- a/BUILDING | |
+++ b/BUILDING | |
@@ -197,7 +197,14 @@ Available Defines | |
DISABLE_DBUS Build without QtDBus module. Native desktop notifications | |
will be disabled. | |
+ (disabled by default) | |
NewerOlder