Skip to content

Commit 137ad66

Browse files
committed
feat: change firefox dir structure
1 parent 8248ed8 commit 137ad66

8 files changed

Lines changed: 16 additions & 7 deletions

File tree

dots/config/floorp/userContent.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import url("/home/ini/.floorp/ini/chrome/colors.css");
22

3-
@import url("/home/ini/.floorp/ini/chrome/bitwarden.css");
4-
@import url("/home/ini/.floorp/ini/chrome/github.css");
5-
@import url("/home/ini/.floorp/ini/chrome/youtube.css");
3+
@import url("/home/ini/.floorp/ini/chrome/websites/bitwarden.css");
4+
@import url("/home/ini/.floorp/ini/chrome/websites/github.css");
5+
@import url("/home/ini/.floorp/ini/chrome/websites/youtube.css");

dots/config/quickshell/AppLauncher.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ WlrLayershell {
1313

1414
keyboardFocus: WlrKeyboardFocus.Exclusive
1515

16-
width: 400
17-
height: 600
16+
implicitWidth: 400
17+
implicitHeight: 600
1818
color: "transparent"
1919

2020
anchors {

dots/config/quickshell/Widgets/ClockWidget.qml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ RowLayout {
8787
anchors.fill: parent
8888
onClicked: {
8989
root.powerMenuVisible = !root.powerMenuVisible;
90-
console.log("Status is now: " + root.powerMenuVisible);
9190
}
9291
}
9392

nixos/modules/home.nix

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ in {
138138

139139
# Clone dotfiles repo inside ~/dev/dotfiles
140140
home.activation.cloneDotfiles = lib.hm.dag.entryAfter ["writeBoundary"] ''
141-
# Clone main dotfiles
142141
baseDir="/home/${default.username}/dev/dotfiles"
143142
if [ ! -d "$baseDir" ]; then
144143
${pkgs.git}/bin/git clone https://github.com/InioX/dotfiles "$baseDir"
@@ -150,6 +149,15 @@ in {
150149
${pkgs.git}/bin/git clone https://github.com/InioX/matugen-themes "$themesDir"
151150
fi
152151
'';
152+
153+
# home.activation.symlinkDotfiles = lib.hm.dag.entryAfter ["cloneDotfiles"] ''
154+
# repoDir="${default.flakePath}/dots/config/floorp/websites"
155+
# targetDir="/home/${default.username}/dev/matugen-themes/"
156+
157+
# if [ -d "$repoDir" ] && [ ! -L "$targetDir" ]; then
158+
# ln -s "$repoDir" "$targetDir"
159+
# fi
160+
# '';
153161
}
154162
];
155163
};

nixos/modules/matugen.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ in {
9999
'';
100100

101101
system.activationScripts.run-matugen-once = ''
102+
set -e
103+
102104
if [ ! -f /home/${default.username}/.local/share/matugen-ran-once ]; then
103105
su -u ini ${pkgs.vscode}/bin/code --install-extension HyprLuna.hyprluna-theme
104106
su -u ini ${pkgs.matugen}/bin/matugen image ${wallpaper}

0 commit comments

Comments
 (0)