Compare commits

..

2 commits

Author SHA1 Message Date
caandt eaf7bb7492 xresources 2024-11-01 02:55:36 -05:00
caandt 2e149b68bc add sorting to dolphin toolbar 2024-10-31 19:29:15 -05:00
4 changed files with 16 additions and 0 deletions

View file

@ -15,6 +15,7 @@ in {
]; ];
fonts.fontconfig.enable = false; fonts.fontconfig.enable = false;
gtk.gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc"; gtk.gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
xresources.path = "${config.xdg.configHome}/Xresources";
xdg.configFile.alacritty.source = mkln "alacritty"; xdg.configFile.alacritty.source = mkln "alacritty";
xdg.configFile.awesome.source = mkln "awesome"; xdg.configFile.awesome.source = mkln "awesome";

View file

@ -147,6 +147,13 @@
<Action name="details"/> <Action name="details"/>
<Separator name="separator_1"/> <Separator name="separator_1"/>
<Action name="url_navigators"/> <Action name="url_navigators"/>
<Separator name="separator_2"/>
<Action name="sort_by_text"/>
<Action name="sort_by_size"/>
<Action name="sort_by_modificationtime"/>
<Action name="ascending"/>
<Action name="descending"/>
<Separator name="separator_3"/>
<Action name="split_view"/> <Action name="split_view"/>
<Action name="split_stash"/> <Action name="split_stash"/>
<Action name="toggle_search"/> <Action name="toggle_search"/>
@ -195,5 +202,10 @@
<Action name="toggle_search" priority="0"/> <Action name="toggle_search" priority="0"/>
<Action name="toggle_filter" priority="0"/> <Action name="toggle_filter" priority="0"/>
<Action name="open_terminal_here" priority="0"/> <Action name="open_terminal_here" priority="0"/>
<Action name="sort_by_size" icon="kr_diskusage"/>
<Action name="sort_by_text" icon="draw-text"/>
<Action name="sort_by_modificationtime" icon="view-calendar-time-spent"/>
<Action name="ascending" icon="up"/>
<Action name="descending" icon="down"/>
</ActionProperties> </ActionProperties>
</gui> </gui>

View file

@ -42,4 +42,6 @@ safeeyes &
copyq & copyq &
xrdb -merge ~/.config/Xresources
exec "${1:-awesome}" exec "${1:-awesome}"

View file

@ -23,6 +23,7 @@
package = pkgs.libsForQt5.breeze-qt5; package = pkgs.libsForQt5.breeze-qt5;
size = 24; size = 24;
gtk.enable = true; gtk.enable = true;
x11.enable = true;
}; };
home.file.".icons/default/index.theme".enable = false; home.file.".icons/default/index.theme".enable = false;
home.file.".icons/breeze_cursors".enable = false; home.file.".icons/breeze_cursors".enable = false;