☰
Current Page
Main Menu
Home
Home
Editing
UbuntuProductivity
Edit
Preview
h1
h2
h3
Keybinding
default
vim
emacs
Markup
Markdown
Plain Text
Pod
RDoc
reStructuredText
AsciiDoc
BibTeX
Creole
MediaWiki
Org-mode
Textile
Help 1
Help 1
Help 1
Help 2
Help 3
Help 4
Help 5
Help 6
Help 7
Help 8
Autosaved text is available. Click the button to restore it.
Restore Text
--- title: UbuntuProductivity --- [[_TOC_]] # Disable device mount pop-ups * thunar-volman-settings * xfce4-notifyd-config # Fix /boot filling up * Remove old configs in `/var/lib/initramfs-tools` * Remove old kernel image packages and files from /boot ```bash #!/bin/bash CURRENT=$(uname -r) VERSIONS_TO_PURGE=$(ls /boot/initrd.img-* | grep -v $CURRENT | sed 's/.*initrd.img-// ; s/-generic//' | sort -V | head -n-1) for v in $VERSIONS_TO_PURGE do rm -i /boot/initrd.img-$v* done for v in $VERSIONS_TO_PURGE do echo linux-image-$v-* linux-headers-$v linux-headers-$v-generic linux-modules*-$v-* done | xargs apt-get --assume-yes purge ``` # Gnome Win+P Disable display switching on "Mod4+P" key combination: /app/gnome_settings_daemon/plugins/xrandr/active # Disable Gnome root window gconftool-2 --type bool --set /apps/nautilus/preferences/show_desktop False # Custom Desktop `~/.local/share/applications/custom.desktop` or `/usr/share/xsessions/custom.desktop` [Desktop Entry] Name=Xsession Exec=/etc/X11/Xsession # Conky `.conkyrc` background no out_to_console yes #out_to_x no update_interval 5.0 total_run_times 0 use_spacer none TEXT ${color ff0000}CPU ${cpu}% MEM $memperc% | /. ${fs_used_perc /}% /home ${fs_used_perc /home}% | BAT ${battery BAT0} | Vol: ${exec amixer get Speaker | egrep -o "[0-9]+%" | head -1 | egrep -o "[0-9]*"}% | ${time %a %x %H:%M} # Switch shells without Root Switching from `csh` to `bash`. Must be done for interactive shells only otherwise it breaks stuff (like vim reading TMP files, etc) `.cshrc` # Exec bash only if using an interactive shell. if ($?prompt) then setenv SHELL /bin/bash exec $SHELL endif # Disable overlay toolbars gsettings set com.canonical.desktop.interface scrollbar-mode normal [[$[Get Code]]][12] # Resources [http://awesome.naquadah.org/wiki/Quickly\_Setting\_up\_Awesome\_with_Gnome][13] [11]: UbuntuProductivity?action=sourceblock&num=1 [12]: UbuntuProductivity?action=sourceblock&num=2 [13]: http://awesome.naquadah.org/wiki/Quickly_Setting_up_Awesome_with_Gnome <!-- vim: filetype=markdown -->
Uploading file...
Sidebar
# SideBar * [Home][1] * [Projects][2] * * * <!-- --> * [Code][3] * [Tech][4] * [Network][5] * [MediaCentre][6] * [UAV][7] * * * <!-- --> * [Travel][8] * [Music][9] * [Horse Riding][10] * [Study][11] * [Games][12] * [Other Activities][13] * * * <!-- --> * [Car][14] * [House][15] * [Watch][16] * [Clothing][17] * [Miscellany][18] * * * [1]: /Home [2]: /Projects [3]: /Code/Code [4]: /Tech/Tech [5]: /Network/Network [6]: /MediaCentre/MediaCentre [7]: /UAV/UAV [8]: /Travel/Travel [9]: /Music/Music [10]: /HorseRiding/HorseRiding [11]: /Study/Study [12]: /Games/Games [13]: /Do/Do [14]: /Car/Car [15]: /House/House [16]: /Watch/Watch [17]: /Clothing/Clothing [18]: /Miscellany/Miscellany <!-- vim: filetype=markdown -->
Edit message:
Cancel