Skip to content

Commit d2a13f2

Browse files
committed
add more pkg
1 parent df0c5bb commit d2a13f2

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

files/scripts/desktop.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
set -oue pipefail
2+
3+
for file in /usr/share/applications/rofi.desktop \
4+
/usr/share/applications/rofi-theme-selector.desktop \
5+
/usr/share/applications/nwg-panel-config.desktop; do
6+
if [ -f "$file" ]; then
7+
echo "Testing changes for $file:"
8+
sed '/^NoDisplay=/{
9+
s/NoDisplay=false/NoDisplay=true/
10+
}
11+
/^NoDisplay=/!{
12+
$a\NoDisplay=true
13+
}' "$file"
14+
echo "--------------------------"
15+
else
16+
echo "File $file does not exist."
17+
fi
18+
done

recipes/common/common-modules.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ modules:
3838
- https://copr.fedorainfracloud.org/coprs/solopasha/hyprland/repo/fedora-%OS_VERSION%/solopasha-hyprland-fedora-%OS_VERSION%.repo
3939
- https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo
4040
- https://copr.fedorainfracloud.org/coprs/celestelove/SwayOSD/repo/fedora-%OS_VERSION%/celestelove-SwayOSD-fedora-%OS_VERSION%.repo
41+
- https://copr.fedorainfracloud.org/coprs/pgdev/ghostty/repo/fedora-%OS_VERSION%/pgdev-ghostty-fedora-%OS_VERSION%.repo
42+
- https://copr.fedorainfracloud.org/coprs/mecattaf/zenRPM/repo/fedora-%OS_VERSION%/mecattaf-zenRPM-fedora-%OS_VERSION%.repo
4143
- https://pkg.cloudflareclient.com/cloudflare-warp-ascii.repo
4244
- https://pkgs.tailscale.com/stable/fedora/tailscale.repo
4345
install:
@@ -145,6 +147,7 @@ modules:
145147

146148
# Terminal
147149
- kitty
150+
- ghostty
148151

149152
# theme and GUI
150153
- fontawesome-fonts-all
@@ -153,6 +156,8 @@ modules:
153156
- paper-icon-theme
154157
- breeze-icon-theme
155158
- papirus-icon-theme
159+
- bibata-cursor-themes
160+
- nwg-look
156161

157162
# Virtual Machines
158163
- libvirt

recipes/common/final-modules.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
modules:
22
- type: script
33
scripts:
4+
- desktop.sh
45
- removeunusedrepos.sh
5-
- regenerateinitramfs.sh
6+
- regenerateinitramfs.sh

0 commit comments

Comments
 (0)