项目作者: DevAlien

项目描述 :
Workspaces app for linux elementaryos gtk
高级语言: Vala
项目地址: git://github.com/DevAlien/workspaces.git
创建时间: 2020-08-11T10:52:46Z
项目社区:https://github.com/DevAlien/workspaces

开源协议:GNU General Public License v3.0

下载




icon

# Workspaces

## Make working on different projects easy again!


Screenshot 01

Screenshot 02

Introduction

Workspaces lets you configure and quickly launch all you need to work on a project. It can open in a second different instances of code, a specific website and a directory.

Motivation

I normally work on different projects throught the day, and some of them require a lot of apps to have open, they have different urls etc.

With Workspaces I’m able with a click to open all the stuff I need for a project. I can also check links for github, isues etc for the projects.

I used to use the Workspaces app for mac and I made it very similar.

Installation

Get it on Flathub

Get it on AppCenter

This app is available on the elementary OS AppCenter and Flathub.

Install it from source

You can of course download and install this app from source.

Dependencies

Ensure you have these dependencies installed

  • granite
  • gtk+-3.0
  • json-glib-1.0
  • libgee-0.8
  • meson
  • vala
  • ninja

Install, build and run

Elementary OS

  1. # install elementary-sdk, meson and ninja
  2. sudo apt install elementary-sdk meson ninja
  3. # clone repository
  4. git clone git@github.com:DevAlien/workspaces.git workspaces
  5. # cd to dir
  6. cd workspaces
  7. # run meson
  8. meson build --prefix=/usr
  9. # cd to build, build and test
  10. cd build
  11. sudo ninja install && com.github.devalien.workspaces

Ubuntu based

  1. #Install meson
  2. sudo apt-get install python3 python3-pip python3-setuptools \
  3. python3-wheel ninja-build
  4. sudo pip3 install meson
  5. #Install libraries
  6. sudo apt-get install libjson-glib-dev libgranite-dev libgee-0.8-dev libgtk-3-dev valac
  7. flatpak install --user flathub io.elementary.BaseApp//juno-19.08
  8. # clone repository
  9. git clone git@github.com:DevAlien/workspaces.git workspaces
  10. # cd to dir
  11. cd workspaces
  12. # run meson
  13. meson build --prefix=/usr
  14. # cd to build, build and test
  15. cd build
  16. sudo ninja install && com.github.devalien.workspaces

Generating pot file

  1. # after setting up meson build
  2. cd build
  3. # generates pot file
  4. sudo ninja com.github.devalien.workspaces-pot
  5. # to regenerate and propagate changes to every po file
  6. sudo ninja com.github.devalien.workspaces-update-po

Thanks/Credits

  • Workspaces Where I got the idea.
  • Tuner The creator of this app inspired me to build one myself.
  • Clipped I took inspiration for the Quick Launch from this app.
  • AppEditor Copied the edit part of the app, I will iterate over it in the next releases.