added hotkeys
This commit is contained in:
@ -30,6 +30,16 @@
|
|||||||
tree
|
tree
|
||||||
usbutils
|
usbutils
|
||||||
zsh
|
zsh
|
||||||
|
# yajl
|
||||||
|
# gcc
|
||||||
|
# gnumake
|
||||||
|
# file
|
||||||
|
# glib
|
||||||
|
# cmake
|
||||||
|
# gtkmm3
|
||||||
|
# mm-common
|
||||||
|
# autoconf
|
||||||
|
# automake
|
||||||
];
|
];
|
||||||
|
|
||||||
documentation.enable = false;
|
documentation.enable = false;
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
mpv
|
mpv
|
||||||
brave
|
brave
|
||||||
firefox
|
firefox
|
||||||
alacritty
|
|
||||||
baobab
|
baobab
|
||||||
lutris
|
lutris
|
||||||
insomnia
|
insomnia
|
||||||
@ -25,6 +24,8 @@
|
|||||||
vulkan-tools
|
vulkan-tools
|
||||||
gnome.eog
|
gnome.eog
|
||||||
virtmanager
|
virtmanager
|
||||||
|
prusa-slicer
|
||||||
|
cura
|
||||||
];
|
];
|
||||||
|
|
||||||
fonts = {
|
fonts = {
|
||||||
|
@ -22,9 +22,32 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
dconf.enable = true;
|
dconf.enable = true;
|
||||||
dconf.settings = with lib.hm.gvariant; {
|
dconf.settings = {
|
||||||
#"org/gnome/desktop/wm/preferences".button-layout = "close:maximize";
|
|
||||||
"org/gnome/desktop/wm/preferences".titlebar-font = "Liberation Sans Bold 9";
|
"org/gnome/desktop/wm/preferences".titlebar-font = "Liberation Sans Bold 9";
|
||||||
|
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = {
|
||||||
|
binding = "<Super>Return";
|
||||||
|
command = "kitty";
|
||||||
|
name = "kitty";
|
||||||
|
};
|
||||||
|
|
||||||
|
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1" = {
|
||||||
|
binding = "<Shift><Super>Return";
|
||||||
|
command = "rofi -show drun";
|
||||||
|
name = "rofi -show drun";
|
||||||
|
};
|
||||||
|
|
||||||
|
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom2" = {
|
||||||
|
binding = "<Super>Tab";
|
||||||
|
command = "rofi -show window";
|
||||||
|
name = "rofi -show window";
|
||||||
|
};
|
||||||
|
|
||||||
|
"org/gnome/settings-daemon/plugins/media-keys".custom-keybindings = [
|
||||||
|
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"
|
||||||
|
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/"
|
||||||
|
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom2/"
|
||||||
|
];
|
||||||
|
|
||||||
# visual-bell = false;
|
# visual-bell = false;
|
||||||
# titlebar-font = "Liberation Sans Bold 9";
|
# titlebar-font = "Liberation Sans Bold 9";
|
||||||
# };
|
# };
|
||||||
@ -42,6 +65,17 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
compression = true;
|
compression = true;
|
||||||
serverAliveInterval = 60;
|
serverAliveInterval = 60;
|
||||||
|
forwardAgent = true;
|
||||||
|
|
||||||
|
matchBlocks."szczepan.ski" = {
|
||||||
|
hostname = "szczepan.ski";
|
||||||
|
# remoteForwards = [ {
|
||||||
|
# bind.address = "127.0.0.1";
|
||||||
|
# bind.port = 52698;
|
||||||
|
# host.address = "127.0.0.1";
|
||||||
|
# host.port = 52698;
|
||||||
|
# } ];
|
||||||
|
};
|
||||||
|
|
||||||
matchBlocks."homeserver" = {
|
matchBlocks."homeserver" = {
|
||||||
hostname = "192.168.1.100";
|
hostname = "192.168.1.100";
|
||||||
@ -86,10 +120,10 @@
|
|||||||
rofi = {
|
rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
lines = 10;
|
lines = 10;
|
||||||
borderWidth = 0;
|
borderWidth = 2;
|
||||||
scrollbar = false;
|
scrollbar = false;
|
||||||
padding = 50;
|
padding = 50;
|
||||||
font = "Roboto 20";
|
font = "Liberation Sans Regular 20";
|
||||||
separator = "solid";
|
separator = "solid";
|
||||||
colors = {
|
colors = {
|
||||||
window = {
|
window = {
|
||||||
@ -101,7 +135,7 @@
|
|||||||
normal = {
|
normal = {
|
||||||
background = "#00000000";
|
background = "#00000000";
|
||||||
foreground = "#a6a6a6";
|
foreground = "#a6a6a6";
|
||||||
backgroundAlt = "#000000";
|
backgroundAlt = "#00000000";
|
||||||
highlight = {
|
highlight = {
|
||||||
background = "#a6a6a6";
|
background = "#a6a6a6";
|
||||||
foreground = "#000000";
|
foreground = "#000000";
|
||||||
|
Reference in New Issue
Block a user