mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
need more testing
This commit is contained in:
parent
ec163b0a13
commit
5cfe09bc6e
2 changed files with 0 additions and 77 deletions
|
|
@ -1,54 +0,0 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
pulseaudio
|
||||
playerctl
|
||||
brightnessctl
|
||||
wezterm
|
||||
xorg.xinit
|
||||
xorg.xauth
|
||||
slock
|
||||
rofi
|
||||
];
|
||||
|
||||
xsession = {
|
||||
enable = true;
|
||||
windowManager.spectrwm = {
|
||||
enable = true;
|
||||
programs = {
|
||||
term = "wezterm";
|
||||
lock = "slock";
|
||||
menu = "rofi -show run";
|
||||
search = "rofi -show window";
|
||||
};
|
||||
bindings = {
|
||||
menu = "MOD+d";
|
||||
quit = "MOD+Shift+e";
|
||||
term = "MOD+Return";
|
||||
wind_del = "MOD+q";
|
||||
wind_kill = "MOD+Shift+q";
|
||||
};
|
||||
unbindings = [
|
||||
"MOD+Shift+q"
|
||||
];
|
||||
settings = {
|
||||
modkey = "Mod4";
|
||||
workspace_limit = 10;
|
||||
focus_mode = "default";
|
||||
tile_gap = 3;
|
||||
region_padding = 3;
|
||||
border_width = 2;
|
||||
color_focus = "rgb:ff/b6/99";
|
||||
color_unfocus = "rgb:75/73/73";
|
||||
workspace_clamp = 1;
|
||||
warp_focus = 0;
|
||||
warp_pointer = 0;
|
||||
focus_close_wrap = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
services.xserver = {
|
||||
dpi = 180;
|
||||
displayManager = {
|
||||
importedVariables = [
|
||||
"GDK_SCALE"
|
||||
"GDK_DPI_SCALE"
|
||||
"QT_AUTO_SCREEN_SCALE"
|
||||
];
|
||||
startx = {
|
||||
enable = true;
|
||||
generateScript = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.variables = {
|
||||
GDK_SCALE = "2";
|
||||
GDK_DPI_SCALE = "0.5";
|
||||
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
|
||||
_JAVA_OPTIONS = "-Dsun.java2d.uiScale=2";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue