install rofi
This commit is contained in:
parent
ac44add81c
commit
ecf07b487c
|
@ -18,6 +18,7 @@
|
||||||
# User programs
|
# User programs
|
||||||
./programs/discord
|
./programs/discord
|
||||||
./programs/mangohud
|
./programs/mangohud
|
||||||
|
./programs/rofi
|
||||||
|
|
||||||
# Common programs
|
# Common programs
|
||||||
../common/programs/git
|
../common/programs/git
|
||||||
|
@ -67,7 +68,6 @@
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
# Stable user programs
|
# Stable user programs
|
||||||
bitwarden
|
bitwarden
|
||||||
dmenu
|
|
||||||
feh
|
feh
|
||||||
gamemode
|
gamemode
|
||||||
spotify
|
spotify
|
||||||
|
|
9
home-manager/sajenim/programs/rofi/default.nix
Normal file
9
home-manager/sajenim/programs/rofi/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ inputs, outputs, lib, config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.rofi = {
|
||||||
|
enable = true;
|
||||||
|
font = "Fira Code 10";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -36,7 +36,7 @@ myWorkspaces = ["code", "chat", "web", "games", "misc"]
|
||||||
myKeys =
|
myKeys =
|
||||||
-- launching and killing programs
|
-- launching and killing programs
|
||||||
[ ("M-n" , spawn myTerminal ) -- %! Launch terminal
|
[ ("M-n" , spawn myTerminal ) -- %! Launch terminal
|
||||||
, ("M-e" , spawn "dmenu_run" ) -- %! Launch dmenu
|
, ("M-e" , spawn "rofi -show run" ) -- %! Launch rofi
|
||||||
, ("M-C-w" , kill ) -- %! Close the focused window
|
, ("M-C-w" , kill ) -- %! Close the focused window
|
||||||
-- layouts
|
-- layouts
|
||||||
, ("M-<Space>" , sendMessage NextLayout ) -- %! Rotate through the available layout algorithms
|
, ("M-<Space>" , sendMessage NextLayout ) -- %! Rotate through the available layout algorithms
|
||||||
|
|
Loading…
Reference in a new issue