Skip to content

Commit

Permalink
🐛 FIX: inkscape snap is broken
Browse files Browse the repository at this point in the history
  • Loading branch information
DaffyDuke committed Aug 3, 2022
1 parent abf0657 commit af05534
Show file tree
Hide file tree
Showing 9 changed files with 26,993 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .aliases
Expand Up @@ -88,7 +88,7 @@ downloadAllImages(){ wget --no-check-certificate -nd -H -p -A jpg,jpeg,png,gif -
dlmp3(){ wget -r -l1 -H -t1 -nd -N -np -A.mp3 -erobots=off "$1"; }
detach() { sudo umount "/dev/"$1"1"; udisks --detach "/dev/$1"; }
debug() { sudo strace -Ff -tt -p $(pidof $1) 2>&1 | tee strace-$1.log; }
drm() { docker rm $(docker ps -q -a); }
# drm() { docker rm $(docker ps -q -a); }

cleansnap() {
snap list --all | grep désactivé | while read Nom Version Révision Suivi Développeur Notes
Expand Down
5 changes: 1 addition & 4 deletions .config/autostart/variety.desktop
Expand Up @@ -2,15 +2,12 @@
Name=Variety
Comment=Variety Wallpaper Changer
Categories=GNOME;GTK;Utility;
Exec=/usr/bin/variety --profile /home/daffy/.config/variety/
Exec=/bin/bash -c "sleep 20 && /usr/bin/variety --profile /home/daffy/.config/variety/"
MimeType=text/uri-list;x-scheme-handler/variety;x-scheme-handler/vrty;
Icon=variety
Terminal=false
Type=Application
StartupNotify=false
Actions=Next;Previous;PauseResume;History;Preferences;
Keywords=Wallpaper;Changer;Change;Download;Downloader;Variety;
X-GNOME-Autostart-Delay=20
StartupWMClass=Variety
Hidden=false

2 changes: 0 additions & 2 deletions .config/yt-dlp/config

This file was deleted.

42 changes: 42 additions & 0 deletions .gmailctl/config.jsonnet
@@ -0,0 +1,42 @@
// NOTE: This is a simple example.
// Please refer to https://github.com/mbrt/gmailctl#configuration for docs about
// the config format. Don't forget to change the configuration before to apply it
// to your own inbox!

// Import the standard library
local lib = import 'gmailctl.libsonnet';

// Some useful variables on top
// TODO: Put your email here
local me = 'YOUR.EMAIL@gmail.com';
local toMe = { to: me };


// The actual configuration
{
// Mandatory header
version: 'v1alpha3',
author: {
name: 'YOUR NAME HERE',
email: me,
},

// TODO: Use your own rules here
rules: [
{
filter: toMe,
actions: {
markImportant: true,
},
},
{
filter: {
from: 'bar@yahoo.com',
},
actions: {
archive: true,
labels: ['foo'],
},
},
],
}

0 comments on commit af05534

Please sign in to comment.