Compare commits
No commits in common. "84d9817933b62e6ef67eb97437a367930e4832b7" and "fe1186f960a5627e09c63bf91dae700695f1c218" have entirely different histories.
84d9817933
...
fe1186f960
@ -11,7 +11,6 @@
|
||||
rustup
|
||||
nodejs
|
||||
pnpm
|
||||
gcc # Required for C, Rust and others
|
||||
# Formatters
|
||||
nixd
|
||||
];
|
||||
|
@ -12,8 +12,6 @@
|
||||
gnomeExtensions.appindicator
|
||||
gnome-extension-manager
|
||||
loupe
|
||||
gnome-calculator
|
||||
gnome-disk-utility
|
||||
];
|
||||
|
||||
programs = {
|
||||
|
@ -36,7 +36,7 @@ $menu = rofi -show drun
|
||||
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
||||
# Or execute your favorite apps at launch like this:
|
||||
|
||||
exec-once = $browser & [workspace 2] $terminal & nextcloud
|
||||
exec-once = $browser & $terminal & nextcloud
|
||||
|
||||
# Status bar
|
||||
exec-once = waybar
|
||||
@ -306,7 +306,6 @@ bind = $mainMod, P, pseudo, # dwindle
|
||||
bind = $mainMod, J, togglesplit, # dwindle
|
||||
bind = $mainMod, B, exec, $browser
|
||||
bind = $mainMod, L, exec, hyprlock
|
||||
bind = $mainMod, K, exec, [float] gnome-calculator
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
bind = $mainMod, left, movefocus, l
|
||||
|
@ -1,5 +1,5 @@
|
||||
* {
|
||||
bg-col: #1e1e2e;
|
||||
bg-col: #1e1e2e;
|
||||
bg-col-light: #1e1e2e;
|
||||
border-col: #1e1e2e;
|
||||
selected-col: #1e1e2e;
|
||||
@ -8,19 +8,18 @@
|
||||
fg-col2: #f38ba8;
|
||||
grey: #6c7086;
|
||||
|
||||
width: 750;
|
||||
font: "JetBrainsMono Nerd Font 12";
|
||||
width: 600;
|
||||
font: "JetBrainsMono Nerd Font 14";
|
||||
}
|
||||
|
||||
element-text, element-icon, mode-switcher {
|
||||
element-text, element-icon , mode-switcher {
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
|
||||
window {
|
||||
height: 360px;
|
||||
border: 3px;
|
||||
border-radius: 5px;
|
||||
border-color: @border-col;
|
||||
background-color: @bg-col;
|
||||
}
|
||||
@ -68,7 +67,7 @@ listview {
|
||||
element {
|
||||
padding: 5px;
|
||||
background-color: @bg-col;
|
||||
text-color: @fg-col;
|
||||
text-color: @fg-col ;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
@ -76,25 +75,25 @@ element-icon {
|
||||
}
|
||||
|
||||
element selected {
|
||||
background-color: @selected-col;
|
||||
text-color: @fg-col2;
|
||||
background-color: @selected-col ;
|
||||
text-color: @fg-col2 ;
|
||||
}
|
||||
|
||||
mode-switcher {
|
||||
spacing: 0;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 10px;
|
||||
background-color: @bg-col-light;
|
||||
text-color: @grey;
|
||||
vertical-align: 0.5;
|
||||
vertical-align: 0.5;
|
||||
horizontal-align: 0.5;
|
||||
}
|
||||
|
||||
button selected {
|
||||
background-color: @bg-col;
|
||||
text-color: @blue;
|
||||
background-color: @bg-col;
|
||||
text-color: @blue;
|
||||
}
|
||||
|
||||
message {
|
||||
|
@ -1,21 +0,0 @@
|
||||
configuration {
|
||||
disable-history: false;
|
||||
display-Network: " Network";
|
||||
display-drun: " Apps ";
|
||||
display-run: " Run ";
|
||||
display-window: " Window";
|
||||
display-ssh: " SSH";
|
||||
display-rofimoji: " 😎 Emojis";
|
||||
drun-display-format: "{icon} {name}";
|
||||
font: "JetBrains Mono 12";
|
||||
hide-scrollbar: true;
|
||||
icon-theme: "Oranchelo";
|
||||
location: 0;
|
||||
modi: [run,drun,window,ssh,rofimoji];
|
||||
show-icons: true;
|
||||
sidebar-mode: true;
|
||||
terminal: "kitty";
|
||||
xoffset: 0;
|
||||
yoffset: 0;
|
||||
}
|
||||
@theme "catppuccin-mocha"
|
@ -1,37 +1,24 @@
|
||||
# App runner
|
||||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
rofi-wayland
|
||||
rofimoji
|
||||
wl-clipboard
|
||||
];
|
||||
|
||||
home.file = {
|
||||
".config/rofi/config.rasi".source = ./config.rasi;
|
||||
".config/rofi/scripts/rofimoji".source = "${pkgs.rofimoji}/bin/rofimoji";
|
||||
".local/share/rofi/themes/catppuccin-mocha.rasi".source = ./catppuccin-mocha.rasi;
|
||||
".config/rofimoji.rc".source = ./rofimoji.rc;
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
# TODO get theme to work
|
||||
# theme = lib.mkDefault ./catppuccin-mocha.rasi;
|
||||
extraConfig = {
|
||||
modi = "run,drun,window";
|
||||
icon-theme = "Oranchelo";
|
||||
show-icons = true;
|
||||
terminal = "kitty";
|
||||
drun-display-format = "{icon} {name}";
|
||||
disable-history = false;
|
||||
hide-scrollbar = true;
|
||||
display-drun = " Apps ";
|
||||
display-run = " Run ";
|
||||
display-window = " Window";
|
||||
display-Network = " Network";
|
||||
sidebar-mode = true;
|
||||
};
|
||||
};
|
||||
|
||||
# TODO Use programs.rofi. Theme is not applied correctly
|
||||
# programs.rofi = {
|
||||
# enable = true;
|
||||
# theme = lib.mkDefault "catppuccin-mocha";
|
||||
# extraConfig = {
|
||||
# modi = "run,drun,window";
|
||||
# icon-theme = "Oranchelo";
|
||||
# show-icons = true;
|
||||
# terminal = "kitty";
|
||||
# drun-display-format = "{icon} {name}";
|
||||
# disable-history = false;
|
||||
# hide-scrollbar = true;
|
||||
# display-drun = " Apps ";
|
||||
# display-run = " Run ";
|
||||
# display-window = " Window";
|
||||
# display-Network = " Network";
|
||||
# sidebar-mode = true;
|
||||
# };
|
||||
# };
|
||||
}
|
||||
|
@ -1,3 +0,0 @@
|
||||
action = copy
|
||||
files = [emojis, math]
|
||||
skin-tone = moderate
|
Loading…
x
Reference in New Issue
Block a user