diff --git a/desktop-entries/com.discordapp.Discord.desktop b/desktop-entries/com.discordapp.Discord.desktop deleted file mode 100644 index 318bb9d..0000000 --- a/desktop-entries/com.discordapp.Discord.desktop +++ /dev/null @@ -1,12 +0,0 @@ -[Desktop Entry] -Version=1.1 -Type=Application -Name=Discord -GenericName=Internet Messenger -Comment=All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone. -Icon=com.discordapp.Discord -Exec=discord-launcher -Path=/usr/bin -Actions= -Categories=InstantMessaging;Network; -StartupWMClass=discord diff --git a/desktop-entries/com.spotify.Client.desktop b/desktop-entries/com.spotify.Client.desktop deleted file mode 100644 index 9f3cccf..0000000 --- a/desktop-entries/com.spotify.Client.desktop +++ /dev/null @@ -1,14 +0,0 @@ -[Desktop Entry] -Version=1.1 -Type=Application -Name=Spotify -GenericName=Online music streaming service -Comment=Access all of your favorite music -Icon=com.spotify.Client -X-GNOME-UsesNotifications=true -Exec=spotify-launcher -Actions= -MimeType=x-scheme-handler/spotify; -Categories=Audio;AudioVideo;Music; -Keywords=Music;Player;Streaming;Online; -StartupWMClass=Spotify diff --git a/desktop-entries/org.gnome.PowerStats.desktop b/desktop-entries/org.gnome.PowerStats.desktop deleted file mode 100644 index d4891c9..0000000 --- a/desktop-entries/org.gnome.PowerStats.desktop +++ /dev/null @@ -1,13 +0,0 @@ -[Desktop Entry] -Version=1.1 -Type=Application -Name=Power Statistics -NoDisplay=true -Comment=Observe power management -Icon=org.gnome.PowerStats -OnlyShowIn=GNOME;Unity; -Exec=gnome-power-statistics -Actions= -Categories=GNOME;GTK;Monitor;System;System-Tools; -Keywords=battery;consumption;charge; -StartupNotify=true diff --git a/scripts/discord-launcher b/scripts/discord-launcher deleted file mode 100644 index 0b83643..0000000 --- a/scripts/discord-launcher +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -################################################################################ -# -# discord-launcher -# Launches discord and forces it to use the correct (dark) GTK theme variant -# -################################################################################ - -export GTK_THEME=:dark -export GTK_THEME_VARIANT="dark" - -/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=discord com.discordapp.Discord & - -# This is dumb, but it works... -for i in {1..11} -do - xprop -f _GTK_THEME_VARIANT 8u -set _GTK_THEME_VARIANT dark -id $(wmctrl -lp | grep Discord | cut -d ' ' -f1) - sleep 1 -done diff --git a/scripts/spotify-launcher b/scripts/spotify-launcher deleted file mode 100644 index 3cdc42b..0000000 --- a/scripts/spotify-launcher +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -################################################################################ -# -# spotify-launcher -# Launches spotify and forces it to use the correct (dark) GTK theme variant -# -################################################################################ - -export GTK_THEME=:dark -export GTK_THEME_VARIANT="dark" - -/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=spotify --file-forwarding com.spotify.Client @@u %U @@ & - -# This is dumb, but it works... -for i in {1..11} -do - xprop -f _GTK_THEME_VARIANT 8u -set _GTK_THEME_VARIANT dark -id $(wmctrl -lp | grep Spotify | cut -d ' ' -f1) - sleep 1 -done