Compare commits
23 commits
Author | SHA1 | Date | |
---|---|---|---|
|
f611ebb783 | ||
|
2f483e73bb | ||
|
f54173cf8c | ||
|
06a3c68c89 | ||
|
89deadce2d | ||
|
68cebba913 | ||
|
915315426f | ||
|
fbbbe1af4e | ||
|
47174631f7 | ||
|
a429b6d842 | ||
|
3a77be077a | ||
|
cb356ed46a | ||
|
1c3a136220 | ||
|
717d01263a | ||
|
80806938b7 | ||
|
b85bd899d2 | ||
|
333225a9f9 | ||
|
b38bcc7260 | ||
|
2507a200b5 | ||
|
f6b74f3100 | ||
|
3a8e14d81a | ||
|
da7c43b33a | ||
|
333db7dfa2 |
11 changed files with 148 additions and 3 deletions
24
.gitea/workflows/package.yaml
Normal file
24
.gitea/workflows/package.yaml
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: Gitea Actions Demo
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
|
||||
Explore-Gitea-Actions2:
|
||||
runs-on: debify-sid
|
||||
container:
|
||||
image: pogmom/debify-x86_64:sid
|
||||
steps:
|
||||
# - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||
# - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||
# - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
# - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
# - run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
- run: pwd
|
||||
# - run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
# - run: uname -v
|
31
debian/changelog
vendored
31
debian/changelog
vendored
|
@ -1,3 +1,34 @@
|
|||
pogmom-desktop (0.4.1) unstable; urgency=medium
|
||||
|
||||
* added network-manager-openvpn
|
||||
|
||||
-- Penelope Gwen <support@pogmom.me> Fri, 13 Dec 2024 19:54:45 +0000
|
||||
|
||||
pogmom-desktop (0.4) unstable; urgency=medium
|
||||
|
||||
* integrate the functionality of and deprecate pogmom-sway-base
|
||||
|
||||
-- Penelope Gwen <support@pogmom.me> Tue, 10 Dec 2024 12:50:31 -0800
|
||||
|
||||
pogmom-desktop (0.3.9) unstable; urgency=medium
|
||||
|
||||
* added nwg-look, qt5ct, gt6ct
|
||||
* removed waybar-nmvpn
|
||||
|
||||
-- Penelope Gwen <support@pogmom.me> Thu, 05 Dec 2024 13:15:07 -0800
|
||||
|
||||
pogmom-desktop (0.3.8) unstable; urgency=medium
|
||||
|
||||
* added libspa-0.2-bluetooth
|
||||
|
||||
-- Penelope Gwen <support@pogmom.me> Sat, 30 Nov 2024 21:03:53 -0800
|
||||
|
||||
pogmom-desktop (0.3.6) unstable; urgency=medium
|
||||
|
||||
* added playerctl
|
||||
|
||||
-- Penelope Gwen <support@pogmom.me> Fri, 05 Jul 2024 12:27:42 -0600
|
||||
|
||||
pogmom-desktop (0.3.5) unstable; urgency=medium
|
||||
|
||||
* add sway-profiles
|
||||
|
|
13
debian/control
vendored
13
debian/control
vendored
|
@ -24,11 +24,17 @@ Depends:
|
|||
hyfetch,
|
||||
libfuse2,
|
||||
libnotify-bin,
|
||||
libspa-0.2-bluetooth,
|
||||
menu-xdg,
|
||||
network-manager-gnome,
|
||||
network-manager-openvpn,
|
||||
nwg-look,
|
||||
pavucontrol-qt,
|
||||
pogmom-sway-base,
|
||||
playerctl,
|
||||
polkit-kde-agent-1,
|
||||
pulseaudio-utils,
|
||||
qt5ct,
|
||||
qt6ct,
|
||||
sway-notification-center,
|
||||
sway-profiles,
|
||||
sway-screenshot,
|
||||
|
@ -36,14 +42,15 @@ Depends:
|
|||
swayidle,
|
||||
udiskie,
|
||||
waybar,
|
||||
waybar-nmvpn,
|
||||
wireplumber,
|
||||
wob,
|
||||
wofi,
|
||||
wofi-calc,
|
||||
xdg-desktop-portal,
|
||||
xdg-desktop-portal-gtk,
|
||||
xdg-desktop-portal-kde,
|
||||
xdg-desktop-portal-wlr,
|
||||
xwayland
|
||||
Replaces:
|
||||
pogmom-sway-base
|
||||
Description: Recommended packages to get started using swayfx as a window manager
|
||||
This metapackage includes various pieces of software used to create a custom desktop environment
|
||||
|
|
2
debian/install
vendored
Normal file
2
debian/install
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
greetd/* usr/share/greetd/pogmom/
|
||||
sway-run /usr/bin/
|
5
debian/postinst
vendored
Normal file
5
debian/postinst
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
mkdir -p /etc/greetd
|
||||
update-alternatives --install /etc/greetd/config.toml greetd /usr/share/greetd/pogmom/config.toml 30 --force
|
||||
update-alternatives --install /etc/greetd/environments greetd_envs /usr/share/greetd/pogmom/environments 30 --force
|
4
debian/postrm
vendored
Normal file
4
debian/postrm
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
update-alternatives --remove greetd /usr/share/greetd/pogmom/config.toml
|
||||
update-alternatives --remove greetd_envs /usr/share/greetd/pogmom/environments
|
6
greetd/config.toml
Normal file
6
greetd/config.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[terminal]
|
||||
vt = 7
|
||||
|
||||
[default_session]
|
||||
command = "dbus-run-session -- sway --config /usr/share/greetd/pogmom/sway-config"
|
||||
user = "_greetd"
|
2
greetd/environments
Normal file
2
greetd/environments
Normal file
|
@ -0,0 +1,2 @@
|
|||
sway-run
|
||||
bash
|
24
greetd/gtkgreet.css
Normal file
24
greetd/gtkgreet.css
Normal file
|
@ -0,0 +1,24 @@
|
|||
window {
|
||||
background-image: url("file:///usr/share/greetd/pogmom/background.jpg");
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
label {
|
||||
color: rgba(250, 250, 250, 1);
|
||||
}
|
||||
|
||||
box#body {
|
||||
background-color: rgba(50, 50, 50, 0.5);
|
||||
border-radius: 10px;
|
||||
padding: 50px;
|
||||
}
|
||||
|
||||
entry,combobox * {
|
||||
background: rgba(50, 50, 50, 1);
|
||||
color: rgba(250, 250, 250, 1);
|
||||
}
|
||||
|
||||
entry.text {
|
||||
color: rgba(250, 250, 250, 1);
|
||||
}
|
11
greetd/sway-config
Normal file
11
greetd/sway-config
Normal file
|
@ -0,0 +1,11 @@
|
|||
exec "gtkgreet -s /usr/share/greetd/pogmom/gtkgreet.css; swaymsg exit"
|
||||
|
||||
default_border pixel 0
|
||||
|
||||
bindsym Mod4+shift+e exec swaynag \
|
||||
-t warning \
|
||||
-m 'What do you want to do?' \
|
||||
-b 'Poweroff' 'systemctl poweroff' \
|
||||
-b 'Reboot' 'systemctl reboot'
|
||||
|
||||
include /etc/sway/config.d/*
|
29
sway-run
Executable file
29
sway-run
Executable file
|
@ -0,0 +1,29 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Session
|
||||
export XDG_SESSION_TYPE=wayland
|
||||
export XDG_SESSION_DESKTOP=sway
|
||||
export XDG_CURRENT_DESKTOP=sway
|
||||
|
||||
# D-Bus
|
||||
# If the session bus is not available it is spawned and wrapper round our program
|
||||
# Otherwise we spawn our program directly
|
||||
drs=
|
||||
if [ -z "${DBUS_SESSION_BUS_ADDRESS}" ]
|
||||
then
|
||||
drs=dbus-run-session
|
||||
fi
|
||||
|
||||
# Environment
|
||||
# Source environmental variable from all files in PATH_ENVIRONMENT
|
||||
# file should be named *.conf and have KEY=value format use # for comment
|
||||
PATH_ENVIRONMENT=$HOME/.config/environment.d
|
||||
if [ -d "$PATH_ENVIRONMENT" ]; then
|
||||
for i in "$PATH_ENVIRONMENT"/*.conf ; do
|
||||
if [ -f "$i" ]; then
|
||||
set -a; . "$i"; set +a
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
exec ${drs} sway "$@"
|
Loading…
Add table
Reference in a new issue