Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created November 18, 2020 05:54
Show Gist options
  • Save r-ryantm/e3ea400865d280ea62ae8b3f45dea970 to your computer and use it in GitHub Desktop.
Save r-ryantm/e3ea400865d280ea62ae8b3f45dea970 to your computer and use it in GitHub Desktop.
/nix/store/1dq19xbm1xch1kb1gb00mlax2iicih6h-gnome-shell-pomodoro-0.18.0
├── bin
│   └── gnome-pomodoro
├── lib
│   ├── gnome-pomodoro
│   │   └── plugins
│   │   ├── actions.plugin
│   │   ├── dark-theme.plugin
│   │   ├── gnome.plugin
│   │   ├── libactions.la
│   │   ├── libactions.so
│   │   ├── libdark-theme.la
│   │   ├── libdark-theme.so
│   │   ├── libgnome.la
│   │   ├── libgnome.so
│   │   ├── libsounds.la
│   │   ├── libsounds.so
│   │   └── sounds.plugin
│   ├── libgnome-pomodoro.la
│   ├── libgnome-pomodoro.so -> libgnome-pomodoro.so.0.0.0
│   ├── libgnome-pomodoro.so.0 -> libgnome-pomodoro.so.0.0.0
│   └── libgnome-pomodoro.so.0.0.0
└── share
├── applications
│   └── org.gnome.Pomodoro.desktop
├── dbus-1
│   └── services
│   └── org.gnome.Pomodoro.service
├── gnome-pomodoro
│   └── sounds
│   ├── bell.ogg
│   ├── birds.ogg
│   ├── clock.ogg
│   ├── loud-bell.ogg
│   └── timer.ogg
├── gnome-shell
│   └── extensions
│   └── pomodoro@arun.codito.in
│   ├── capabilities.js
│   ├── config.js
│   ├── dbus.js
│   ├── dialogs.js
│   ├── extension.js
│   ├── indicator.js
│   ├── metadata.json
│   ├── notifications.js
│   ├── presence.js
│   ├── settings.js
│   ├── stylesheet.css
│   ├── timer.js
│   └── utils.js
├── gsettings-schemas
│   └── gnome-shell-pomodoro-0.18.0
│   └── glib-2.0
│   └── schemas
│   ├── gschemas.compiled
│   ├── org.gnome.pomodoro.gschema.xml
│   ├── org.gnome.pomodoro.plugins.actions.gschema.xml
│   ├── org.gnome.pomodoro.plugins.gnome.gschema.xml
│   └── org.gnome.pomodoro.plugins.sounds.gschema.xml
├── icons
│   └── hicolor
│   ├── 16x16
│   │   └── apps
│   │   └── gnome-pomodoro.png
│   ├── 24x24
│   │   └── apps
│   │   └── gnome-pomodoro.png
│   ├── 256x256
│   │   └── apps
│   │   └── gnome-pomodoro.png
│   ├── 32x32
│   │   └── apps
│   │   └── gnome-pomodoro.png
│   ├── 48x48
│   │   └── apps
│   │   └── gnome-pomodoro.png
│   ├── 512x512
│   │   └── apps
│   │   └── gnome-pomodoro.png
│   └── scalable
│   └── apps
│   └── gnome-pomodoro-symbolic.svg
├── locale
│   ├── ca
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── cs
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── de
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── el
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── es
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── fa
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── fi
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── fr
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── hu
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── id
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── it
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── kk
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── lt
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── nb
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── nl
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── pl
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── pt_BR
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── ru
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── sv
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   ├── tr
│   │   └── LC_MESSAGES
│   │   └── gnome-pomodoro.mo
│   └── zh_CN
│   └── LC_MESSAGES
│   └── gnome-pomodoro.mo
└── metainfo
└── org.gnome.Pomodoro.appdata.xml
77 directories, 71 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment