6 Commits
Author SHA1 Message Date
EnumDev d3837db2df Add oxwm detection 2026-05-25 10:44:09 +03:00
EnumDev 1d42bf9126 Hide snap mounts 2026-04-23 13:47:17 +03:00
EnumDev 690fefbffb Install build-essential in publish workflow job 2026-04-18 19:12:11 +03:00
EnumDev 0d4df6b222 Update CI/CD workflow 2026-04-18 18:59:31 +03:00
EnumDev 25a27e3c16 v8.0 2026-04-18 18:49:33 +03:00
EnumDevandGitHub 5d7e72fa2e Merge pull request #2 from EnumeratedDev/debian
Merge debian and CI/CD changes
2026-04-18 15:29:25 +00:00
4 changed files with 25 additions and 1 deletions
+3 -1
View File
@@ -4,6 +4,8 @@ on:
push:
branches:
- "**"
tags:
- "*"
pull_request:
branches:
- master
@@ -36,7 +38,7 @@ jobs:
- name: Upgrade packages
run: sudo apt update -y && sudo apt upgrade -y
- name: Download and install dependencies
run: sudo apt install -y make debhelper golang libgl-dev libx11-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev
run: sudo apt install -y build-essential make debhelper golang libgl-dev libx11-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev
- name: Build deb package
run: dpkg-buildpackage -b
- name: Read changelog
+6
View File
@@ -1,3 +1,9 @@
stormfetch (8.0-1) trixie; urgency=medium
* Update package version to 8.0
-- EnumDev <[email protected]> Sat, 18 Apr 2026 14:18:37 +0300
stormfetch (7.4-1) trixie; urgency=medium
* Fix version number
+5
View File
@@ -62,6 +62,11 @@ func GetMountedPartitions(hiddenPartitions, hiddenFilesystems []string) []partit
continue
}
// Skip snap mountpoints
if strings.HasPrefix(fields[1], "/snap/") {
continue
}
// Skip partition if explicitly hidden
if slices.Contains(hiddenPartitions, fields[0]) {
continue
+11
View File
@@ -205,6 +205,17 @@ func GetDEWM() DEWM {
dewm.Name += " " + version
}
return dewm
} else if processExists("oxwm") {
dewm := DEWM{
Name: "OXWM",
Type: "WM",
}
if version := runCommand("oxwm --version 2>&1 | tr -d 'v'", "/bin/sh"); version != "" {
dewm.Name += " " + version
}
return dewm
}
return DEWM{